From: <otm...@us...> - 2010-04-29 14:26:09
|
Revision: 7054 http://jython.svn.sourceforge.net/jython/?rev=7054&view=rev Author: otmarhumbel Date: 2010-04-29 14:26:03 +0000 (Thu, 29 Apr 2010) Log Message: ----------- reintroduce the simplest test on windows Modified Paths: -------------- trunk/jython/Lib/test/test_bat_jy.py Modified: trunk/jython/Lib/test/test_bat_jy.py =================================================================== --- trunk/jython/Lib/test/test_bat_jy.py 2010-04-29 00:06:48 UTC (rev 7053) +++ trunk/jython/Lib/test/test_bat_jy.py 2010-04-29 14:26:03 UTC (rev 7054) @@ -321,7 +321,11 @@ pass def test_main(): - test_support.run_unittest(DummyTest) + if os._name == 'nt': + test_support.run_unittest(VanillaTest) + else: + # provide at least one test for the other platforms - happier build bots + test_support.run_unittest(DummyTest) if __name__ == '__main__': This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |