THRIFT-5590 Haxe complex inits
Client: hx
Patch: Jens Geyer
This closes #2622
diff --git a/lib/haxe/test/src/Main.hx b/lib/haxe/test/src/Main.hx
index 6c262d7..e04af78 100644
--- a/lib/haxe/test/src/Main.hx
+++ b/lib/haxe/test/src/Main.hx
@@ -31,6 +31,7 @@
enum WhatTests {
Normal;
Multiplex;
+ Constants;
}
class Main
@@ -56,6 +57,8 @@
server = true;
case "multiplex" :
tests = Multiplex;
+ case "constants" :
+ tests = Constants;
default:
throw 'Invalid argument "$arg"\n'+CMDLINEHELP;
}
@@ -76,6 +79,8 @@
StreamTest.Run(server);
case Multiplex:
MultiplexTest.Run(server);
+ case Constants:
+ ConstantsTest.Run(server);
default:
throw "Unhandled test mode $tests";
}