From 7756b4cc61b914eb280da2f536ac7a7f3d797a71 Mon Sep 17 00:00:00 2001 From: Aliaksey Kandratsenka Date: Wed, 7 Feb 2024 19:32:45 -0500 Subject: [PATCH] don't force TMPDIR on all unittests Turns out at least on FreeBSD tmpfile will fail if TMPDIR points to non-existant directory. This also has nice property of leaving it down to users to set up TMPDIR the way they want. --- Makefile.am | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index d3c1d29..f84775c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -660,7 +660,6 @@ sampler_test_LDADD = libcommon.la # These unittests often need to run binaries. They're in the current dir TESTS_ENVIRONMENT += BINDIR=. -TESTS_ENVIRONMENT += TMPDIR=/tmp/perftools TESTS += sampling_test.sh$(EXEEXT) sampling_test_sh_SOURCES = src/tests/sampling_test.sh