From ccff5658e05176cdcf07ef7ffdf2d115687c1a55 Mon Sep 17 00:00:00 2001 From: Andreas Schuh Date: Tue, 24 Mar 2015 23:44:34 +0000 Subject: [PATCH] #108 Fix temporary directory configuration of negative compilation tests --- test/CMakeLists.txt | 1 + test/gflags_nc.py.in | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index af5ca3c..891224d 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -173,6 +173,7 @@ if (BUILD_NC_TESTS) " Either install Python or set BUILD_NC_TESTS to FALSE and try again.") endif () set (SRCDIR "${CMAKE_CURRENT_SOURCE_DIR}/nc") + set (TMPDIR "${gflags_BINARY_DIR}/Testing/Temporary") configure_file (gflags_nc.py.in "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/nc.py" @ONLY) macro (add_gflags_nc_test name) add_test ( diff --git a/test/gflags_nc.py.in b/test/gflags_nc.py.in index 7636782..9c6054c 100644 --- a/test/gflags_nc.py.in +++ b/test/gflags_nc.py.in @@ -6,7 +6,7 @@ import subprocess import shutil CMAKE = '@CMAKE_COMMAND@' -TMPDIR = '@TEMPDIR@' +TMPDIR = '@TMPDIR@' SRCDIR = '@SRCDIR@' GFLAGS_DIR = '@gflags_BINARY_DIR@'