From ea8e6a795023b64e91be9e99a97c1921c34a1add Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 1 Dec 2004 16:51:37 +0000 Subject: [PATCH] Don't delete EXE's when debugging. [SVN r26395] --- v1/testing.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v1/testing.jam b/v1/testing.jam index ccb6a4279..1dd72636c 100755 --- a/v1/testing.jam +++ b/v1/testing.jam @@ -417,7 +417,7 @@ rule run-test ( type-to-test run-target : sources * ) capture-run-output $(run-target) : $(executable) : $(debugger) ; - if ! ( --preserve-test-targets in $(ARGV) ) + if ! ( --preserve-test-targets in $(ARGV) ) && ! [ MATCH ^--debugger=(.*) : $(ARGV) ] { RmTemps $(run-target) : $(targets-to-test) ; }