Make compiler command test last until caching is fixed.

- global compiler cache breaks tests that come after this one.
This commit is contained in:
Todd Gamblin 2016-08-07 17:53:59 -07:00
parent e5743db9b9
commit 5d690c9270

View File

@ -23,6 +23,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
############################################################################## ##############################################################################
import sys import sys
import os
import llnl.util.tty as tty import llnl.util.tty as tty
import nose import nose
@ -40,13 +41,11 @@
'cc', 'cc',
'cmd.find', 'cmd.find',
'cmd.module', 'cmd.module',
'cmd.test_compiler_cmd',
'cmd.test_install', 'cmd.test_install',
'cmd.uninstall', 'cmd.uninstall',
'concretize', 'concretize',
'concretize_preferences', 'concretize_preferences',
'config', 'config',
'configure_guess',
'database', 'database',
'directory_layout', 'directory_layout',
'environment', 'environment',
@ -78,6 +77,8 @@
'versions', 'versions',
'provider_index', 'provider_index',
'yaml', 'yaml',
# This test needs to be last until global compiler cache is fixed.
'cmd.test_compiler_cmd',
] ]
def list_tests(): def list_tests():