~madteam/mg5amcnlo/series2.0

« back to all changes in this revision

Viewing changes to tests/acceptance_tests/test_cmd.py

merge lp:~maddevelopers/madgraph5/transfer_on_exit 

Show diffs side-by-side

added added

removed removed

Lines of Context:
113
113
        config =dict(config)
114
114
        del config['stdout_level']
115
115
        for key in config.keys():
116
 
            if key.endswith('_path'):
 
116
            if key.endswith('_path') and key != 'cluster_temp_path':
117
117
                del config[key]
118
118
        expected = {'web_browser': None, 
119
119
                    'text_editor': None, 
125
125
#                    'delphes_path': './Delphes', 
126
126
                    'cluster_type': 'condor', 
127
127
#                    'madanalysis_path': './MadAnalysis', 
 
128
                    'cluster_temp_path': None, 
128
129
                    'fortran_compiler': None, 
129
130
#                    'exrootanalysis_path': './ExRootAnalysis', 
130
131
                    'eps_viewer': None, 
729
730
        self.assertEqual(status, 0)
730
731
        self.assertTrue(os.path.exists(os.path.join(self.out_dir,
731
732
                                               'bin','internal', 'gen_ximprove')))
732
 
        status = subprocess.call(['make', '../bin/internal/combine_runs'],
733
 
                                 stdout=devnull, 
734
 
                                 cwd=os.path.join(self.out_dir, 'Source'))
735
 
        self.assertEqual(status, 0)
736
 
        self.assertTrue(os.path.exists(os.path.join(self.out_dir,
737
 
                                               'bin','internal', 'combine_runs')))
738
733
        # Check that gensym compiles
739
734
        status = subprocess.call(['make', 'gensym'],
740
735
                                 stdout=devnull,