summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Chimento <philip.chimento@gmail.com>2019-12-11 12:44:30 -0800
committerPhilip Chimento <philip.chimento@gmail.com>2019-12-16 15:26:29 -0500
commit84c66942372057f593808e19df5fb5876a9bacdc (patch)
treeae6f7caa51888430a482e3a83eab3bbf1a355393
parentbace2f417e0de31ec8bf60590bc823369ecb2851 (diff)
tests: Look for built tartan plugin in builddir
The previous code seems to be accidentally looking in the srcdir.
-rwxr-xr-xtests/wrapper-compiler-errors2
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}."