diff options
author | Philip Chimento <philip.chimento@gmail.com> | 2019-12-11 12:44:30 -0800 |
---|---|---|
committer | Philip Chimento <philip.chimento@gmail.com> | 2019-12-16 15:26:29 -0500 |
commit | 84c66942372057f593808e19df5fb5876a9bacdc (patch) | |
tree | ae6f7caa51888430a482e3a83eab3bbf1a355393 /tests | |
parent | bace2f417e0de31ec8bf60590bc823369ecb2851 (diff) |
tests: Look for built tartan plugin in builddir
The previous code seems to be accidentally looking in the srcdir.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/wrapper-compiler-errors | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wrapper-compiler-errors b/tests/wrapper-compiler-errors index 029787a..8a8aa20 100755 --- a/tests/wrapper-compiler-errors +++ b/tests/wrapper-compiler-errors @@ -24,7 +24,7 @@ input_filename=$1 temp_dir=`mktemp -d`/${abs_top_builddir} tests_dir=`dirname $0` tartan=${tests_dir}/../scripts/tartan -tartan_plugin=${tests_dir}/../clang-plugin/.libs/libtartan.so +tartan_plugin=${abs_top_builddir}/clang-plugin/.libs/libtartan.so echo "Reading input from ${input_filename}." echo "Using temporary directory ${temp_dir}." |