Trailing slash no longer necesseary for -with-ia-src-dir option.
authorJustin Seyster <jseyster@cs.sunysb.edu>
Tue, 20 Jul 2010 01:26:27 +0000 (21:26 -0400)
committerJustin Seyster <jseyster@cs.sunysb.edu>
Wed, 1 Sep 2010 00:42:17 +0000 (20:42 -0400)
test/run-testcase.py

index 808dd4d9cc94de1c10bcaf7cc753d64670a88ca7..bf6527679ef80c5c2468634b6bba2c5a4284435d 100755 (executable)
@@ -498,7 +498,7 @@ def compileTestcase(working_dir, target_source, plugin_libs, hooks):
         return None
 
     # Compile the test driver, which has the main function.
-    main_c_file = gcc_interaspect_src + 'test/test-driver.c'
+    main_c_file = gcc_interaspect_src + '/test/test-driver.c'
     main_o_file = working_dir + '/test-driver.o'
     cmd_args = ['-Wall', '-Werror', '-c', '-o', main_o_file, main_c_file]
     result = runGCC(cmd_args, "Fatal -- Failed to compile test driver:")