diff options
author | Sven Gothel <[email protected]> | 2023-09-17 01:46:25 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-09-17 01:46:25 +0200 |
commit | b81cf8ca025f2a525a192ec24c63f95cb54b7444 (patch) | |
tree | 7adcb4bc4aafc3963947c1c4e99a26823a4957b6 /etc | |
parent | dbe9eee971b6ac7efa01ccb32bc16577f13c53dd (diff) |
etc/test.bat: Override test.log logfile, don't append
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/test.bat | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/etc/test.bat b/etc/test.bat index ef924fb56..b2a71b6e2 100755 --- a/etc/test.bat +++ b/etc/test.bat @@ -9,10 +9,10 @@ set X_ARGS="-Dsun.java2d.noddraw=true" "-Dsun.awt.noerasebackground=true" REM java -classpath %CP_ALL% %X_ARGS% com.jogamp.opengl.awt.GLCanvas > java-win64.log 2>&1
REM java -classpath %CP_ALL% %X_ARGS% com.jogamp.common.GlueGenVersion > test.log 2>&1
-REM java -classpath %CP_ALL% %X_ARGS% com.jogamp.nativewindow.NativeWindowVersion >> test.log 2>&1
-REM java -classpath %CP_ALL% %X_ARGS% com.jogamp.opengl.JoglVersion >> test.log 2>&1
-REM java -classpath %CP_ALL% %X_ARGS% com.jogamp.newt.NewtVersion >> test.log 2>&1
-REM java -classpath %CP_ALL% %X_ARGS% com.jogamp.newt.opengl.GLCanvas >> test.log 2>&1
-java -classpath %CP_ALL% %X_ARGS% com.jogamp.newt.opengl.GLWindow >> test.log 2>&1
+REM java -classpath %CP_ALL% %X_ARGS% com.jogamp.nativewindow.NativeWindowVersion > test.log 2>&1
+REM java -classpath %CP_ALL% %X_ARGS% com.jogamp.opengl.JoglVersion > test.log 2>&1
+REM java -classpath %CP_ALL% %X_ARGS% com.jogamp.newt.NewtVersion > test.log 2>&1
+REM java -classpath %CP_ALL% %X_ARGS% com.jogamp.newt.opengl.GLCanvas > test.log 2>&1
+java -classpath %CP_ALL% %X_ARGS% com.jogamp.newt.opengl.GLWindow > test.log 2>&1
type test.log
|