From d587c093de556125dcf65254bc69776cce9f547d Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Wed, 14 Dec 2011 19:36:40 +0000 Subject: [PATCH] Clean up most artifacts of building the tests under Windows --- test_problems/SConscript | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test_problems/SConscript b/test_problems/SConscript index f68f8e8a9..68e337c38 100644 --- a/test_problems/SConscript +++ b/test_problems/SConscript @@ -85,8 +85,9 @@ class CompileAndTest(Test): return Test.run(self, env, *source) def clean(self, env): - files = [self.programName, - self.programName + '.o'] + files = [self.programName + ext + for ext in ['', '.o', '.exe', '.exe.manifest', '.ilk', + '.obj', '.pdb']] return Test.clean(self, env, files=files)