~eda-qa/dhlib/main

« back to all changes in this revision

Viewing changes to lib/haxe/unit/TestRunnerX.hx

  • Committer: edA-qa mort-ora-y
  • Date: 2010-02-16 05:36:32 UTC
  • Revision ID: eda-qa@disemia.com-20100216053632-60lt7fndfi3fgblw
first

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package haxe.unit;
 
2
 
 
3
class TestRunnerX extends TestRunner
 
4
{
 
5
        public function runExit()
 
6
        {
 
7
                var ret = run();
 
8
#if neko
 
9
                neko.Sys.exit( ret ? 0 : 1 );
 
10
#end
 
11
        }
 
12
}