Fix hard-coded header path
authorLei Zhang <antiagainst@google.com>
Fri, 17 Nov 2017 21:33:32 +0000 (16:33 -0500)
committerLei Zhang <antiagainst@google.com>
Sat, 18 Nov 2017 00:54:55 +0000 (19:54 -0500)
If SPIRV-Tools is used as an external project and have
googletest being kept in the same directory as it, we
won't have gmock-matchers.h in external/. This will
result in a compilation error.

Use gmock.h instead.

test/opt/ir_context_test.cpp

index f418022..e2ace77 100644 (file)
@@ -12,7 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <external/googletest/googlemock/include/gmock/gmock-matchers.h>
+#include <gmock/gmock.h>
 #include <gtest/gtest.h>
 #include <algorithm>