|
From: Brian M. <ma...@us...> - 2005-05-22 12:12:24
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/openal In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3724/java/org/lwjgl/test/openal Modified Files: ALCTest.java MovingSoundTest.java OpenALCreationTest.java PlayTest.java PlayTestMemory.java PositionTest.java SourceLimitTest.java StressTest.java Log Message: added System.exit so that vm instances gets nuked in webstart Index: PositionTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/openal/PositionTest.java,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- PositionTest.java 29 Mar 2005 18:09:31 -0000 1.26 +++ PositionTest.java 22 May 2005 12:12:09 -0000 1.27 @@ -484,6 +484,7 @@ public static void main(String[] args) { PositionTest positionTest = new PositionTest(); positionTest.execute(args); + System.exit(0); } /** Index: ALCTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/openal/ALCTest.java,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- ALCTest.java 22 Jul 2004 14:27:07 -0000 1.14 +++ ALCTest.java 22 May 2005 12:12:09 -0000 1.15 @@ -104,5 +104,6 @@ public static void main(String[] args) { ALCTest alcTest = new ALCTest(); alcTest.execute(args); + System.exit(0); } } \ No newline at end of file Index: OpenALCreationTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/openal/OpenALCreationTest.java,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- OpenALCreationTest.java 25 Feb 2005 20:24:10 -0000 1.12 +++ OpenALCreationTest.java 22 May 2005 12:12:09 -0000 1.13 @@ -220,5 +220,6 @@ public static void main(String[] args) { OpenALCreationTest oalCreationTest = new OpenALCreationTest(); oalCreationTest.execute(args); + System.exit(0); } } Index: PlayTestMemory.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/openal/PlayTestMemory.java,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- PlayTestMemory.java 25 Feb 2005 20:24:10 -0000 1.19 +++ PlayTestMemory.java 22 May 2005 12:12:09 -0000 1.20 @@ -229,5 +229,6 @@ public static void main(String[] args) { PlayTestMemory playTestMemory = new PlayTestMemory(); playTestMemory.execute(args); + System.exit(0); } } Index: StressTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/openal/StressTest.java,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- StressTest.java 25 Feb 2005 20:24:10 -0000 1.15 +++ StressTest.java 22 May 2005 12:12:09 -0000 1.16 @@ -218,5 +218,6 @@ public static void main(String[] args) { StressTest stressTest = new StressTest(); stressTest.execute(args); + System.exit(0); } } Index: SourceLimitTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/openal/SourceLimitTest.java,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- SourceLimitTest.java 12 May 2005 15:44:22 -0000 1.15 +++ SourceLimitTest.java 22 May 2005 12:12:09 -0000 1.16 @@ -160,5 +160,6 @@ public static void main(String[] args) { SourceLimitTest sourceLimitTest = new SourceLimitTest(); sourceLimitTest.execute(args); + System.exit(0); } } Index: MovingSoundTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/openal/MovingSoundTest.java,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- MovingSoundTest.java 25 Feb 2005 20:24:10 -0000 1.34 +++ MovingSoundTest.java 22 May 2005 12:12:09 -0000 1.35 @@ -213,5 +213,6 @@ public static void main(String[] args) { MovingSoundTest movingSoundTest = new MovingSoundTest(); movingSoundTest.execute(args); + System.exit(0); } } Index: PlayTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/openal/PlayTest.java,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- PlayTest.java 25 Feb 2005 20:24:10 -0000 1.18 +++ PlayTest.java 22 May 2005 12:12:09 -0000 1.19 @@ -216,5 +216,6 @@ public static void main(String[] args) { PlayTest playTest = new PlayTest(); playTest.execute(args); + System.exit(0); } } |