From: Justin Seyster Date: Tue, 20 Jul 2010 01:26:27 +0000 (-0400) Subject: Trailing slash no longer necesseary for -with-ia-src-dir option. X-Git-Tag: release-v1.0~49^2~11 X-Git-Url: https://git.fsl.cs.stonybrook.edu/?a=commitdiff_plain;h=2fda498a309c90bc1cefb1009da1b816ea7e20a8;p=interaspect.git Trailing slash no longer necesseary for -with-ia-src-dir option. --- diff --git a/test/run-testcase.py b/test/run-testcase.py index 808dd4d..bf65276 100755 --- a/test/run-testcase.py +++ b/test/run-testcase.py @@ -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:")