# HG changeset patch # User ross lazarus ross.lazarus@gmail.com # Date 1338898710 -36000 # Node ID 0ee2b06ea30481e78c723211e438ff084d03f475 # Parent 3f58115c6c5b4e4413a93077c771b55ea27f3dd9 fix destination names of test files to match test generator schema diff -r 3f58115c6c5b -r 0ee2b06ea304 rgToolFactory.py --- a/rgToolFactory.py Tue Jun 05 22:15:31 2012 +1000 +++ b/rgToolFactory.py Tue Jun 05 22:18:30 2012 +1000 @@ -249,11 +249,11 @@ if self.opts.input_tab <> 'None': # we may have test data? testdir = os.path.join(tdir,'test-data') os.mkdir(testdir) # make tests directory - shutil.copyfile(self.opts.input_tab,os.path.join(testdir,'test1_in.tab')) + shutil.copyfile(self.opts.input_tab,os.path.join(testdir,self.test1Input)) if self.opts.output_tab <> 'None': - shutil.copyfile(self.opts.output_tab,os.path.join(testdir,'test1_out.tab')) + shutil.copyfile(self.opts.output_tab,os.path.join(testdir,self.test1Output)) if self.opts.make_HTML: - shutil.copyfile(self.opts.output_html,os.path.join(testdir,'test1_out.html')) + shutil.copyfile(self.opts.output_html,os.path.join(testdir,self.test1HTML)) if self.opts.output_dir: shutil.copyfile(self.tlog,os.path.join(testdir,'test1_out.log')) shutil.copyfile(self.xmlfile,os.path.join(tdir,self.xmlfile))