Tests stop working under xcode 8 TEST_HOST error

For some reason the “Host Application” setting in the picture below was the problem for me. Selecting the proper target fixed this.

This ended up modifying the following values in my xcodeproj:

  • BUNDLE_LOADER = “$(TEST_HOST)”;
  • TEST_HOST = “$(BUILT_PRODUCTS_DIR)/myappname.app/myappname”;

Leave a Comment