From: Ulf Hermann Date: Mon, 16 Jul 2018 10:01:21 +0000 (+0200) Subject: Remove previous test files before running the next round X-Git-Tag: elfutils-0.174~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1b548ea9eea29915510a361c24a6eb98fa0b6a6d;p=thirdparty%2Felfutils.git Remove previous test files before running the next round strip explicitly creates the new files. This will not work on windows if the files already exist. Also, if strip fails to create the files for any reason, we would check the previous run's files and succeed. However, the test should fail then. Signed-off-by: Ulf Hermann --- diff --git a/tests/ChangeLog b/tests/ChangeLog index 5a9dc33bf..f8b69bee6 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,8 @@ +2018-07-16 Ulf Hermann + + * run-strip-reloc.sh: Remove previous testfiles before running the + next test. + 2018-07-17 Mark Wielaard * hello_riscv64.ko.bz2: Updated with debuginfo. diff --git a/tests/run-strip-reloc.sh b/tests/run-strip-reloc.sh index 292e90828..bbc9f5861 100755 --- a/tests/run-strip-reloc.sh +++ b/tests/run-strip-reloc.sh @@ -32,6 +32,8 @@ runtest() { outfile2=out.stripped2 debugfile2=out.debug2 + rm -f $outfile1 $debugfile1 $outfile2 $debugfile2 + testrun ${abs_top_builddir}/src/strip -o $outfile1 -f $debugfile1 $infile || { echo "*** failure strip $infile"; status=1; }