-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
69 changed files
with
5,769 additions
and
709 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
@echo off | ||
setlocal enabledelayedexpansion | ||
|
||
:: setup basic paths | ||
set CWD=%CD% | ||
cd /d %~dp0\.. | ||
set XLT_HOME=%CD% | ||
cd /d %CWD% | ||
|
||
if not defined XLT_CONFIG_DIR set XLT_CONFIG_DIR=%XLT_HOME%\config | ||
|
||
:: setup Java class path | ||
set CLASSPATH=%XLT_HOME%\target\classes;%XLT_HOME%\lib\* | ||
|
||
:: setup other Java options | ||
set JAVA_OPTIONS= | ||
set JAVA_OPTIONS=%JAVA_OPTIONS% -Xmx4g | ||
set JAVA_OPTIONS=%JAVA_OPTIONS% -XX:+UseStringDeduplication | ||
set JAVA_OPTIONS=%JAVA_OPTIONS% -Dcom.xceptance.xlt.home="%XLT_HOME%" | ||
set JAVA_OPTIONS=%JAVA_OPTIONS% -Dlog4j2.configurationFile="%XLT_CONFIG_DIR%\reportgenerator.properties" | ||
rem set JAVA_OPTIONS=%JAVA_OPTIONS% -agentlib:jdwp=transport=dt_socket,address=localhost:6666,server=y,suspend=n | ||
set JAVA_OPTIONS=%JAVA_OPTIONS% -cp "%CLASSPATH%" | ||
|
||
:: append options to suppress illegal access warnings for Java 9+ | ||
set PACKAGES=java.base/java.lang.reflect java.base/java.text java.base/java.util java.desktop/java.awt.font | ||
for %%p in (%PACKAGES%) do set JAVA_OPTIONS=!JAVA_OPTIONS! --add-opens=%%p=ALL-UNNAMED | ||
set JAVA_OPTIONS=%JAVA_OPTIONS% -XX:+IgnoreUnrecognizedVMOptions | ||
rem set JAVA_OPTIONS=%JAVA_OPTIONS% --illegal-access=debug | ||
|
||
:: run Java | ||
java %JAVA_OPTIONS% com.xceptance.xlt.report.scorecard.UpdateMain %* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#!/bin/sh | ||
|
||
# setup basic paths | ||
CWD=`pwd` | ||
cd "`dirname "$0"`/.." | ||
XLT_HOME=`pwd` | ||
cd "$CWD" | ||
export XLT_HOME | ||
|
||
if [ -z "$XLT_CONFIG_DIR" ]; then | ||
XLT_CONFIG_DIR=$XLT_HOME/config | ||
export XLT_CONFIG_DIR | ||
fi | ||
|
||
# setup Java class path | ||
CLASSPATH="$XLT_HOME"/target/classes:"$XLT_HOME"/lib/* | ||
|
||
# setup other Java options | ||
JAVA_OPTIONS= | ||
JAVA_OPTIONS="$JAVA_OPTIONS -Xmx4g" | ||
JAVA_OPTIONS="$JAVA_OPTIONS -XX:+UseStringDeduplication" | ||
JAVA_OPTIONS="$JAVA_OPTIONS -Dcom.xceptance.xlt.home=\"$XLT_HOME\"" | ||
JAVA_OPTIONS="$JAVA_OPTIONS -Dlog4j2.configurationFile=\"$XLT_CONFIG_DIR/reportgenerator.properties\"" | ||
JAVA_OPTIONS="$JAVA_OPTIONS -Djava.awt.headless=true" | ||
#JAVA_OPTIONS="$JAVA_OPTIONS -agentlib:jdwp=transport=dt_socket,address=localhost:6666,server=y,suspend=n" | ||
#JAVA_OPTIONS="$JAVA_OPTIONS -XX:+UnlockCommercialFeatures -XX:+FlightRecorder -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -XX:FlightRecorderOptions=stackdepth=1024" | ||
#JAVA_OPTIONS="$JAVA_OPTIONS -XX:+UnlockDiagnosticVMOptions -XX:+PrintCompilation -XX:+PrintInlining" | ||
#JAVA_OPTIONS="$JAVA_OPTIONS -XX:MaxInlineSize=128 -XX:FreqInlineSize=1024" | ||
|
||
JAVA_OPTIONS="$JAVA_OPTIONS -cp \"$CLASSPATH\"" | ||
|
||
# append options to suppress illegal access warnings for Java 9+ | ||
PACKAGES="java.base/java.lang.reflect java.base/java.text java.base/java.util java.desktop/java.awt.font" | ||
for p in $PACKAGES; do JAVA_OPTIONS="$JAVA_OPTIONS --add-opens=$p=ALL-UNNAMED"; done | ||
JAVA_OPTIONS="$JAVA_OPTIONS -XX:+IgnoreUnrecognizedVMOptions" | ||
#JAVA_OPTIONS="$JAVA_OPTIONS --illegal-access=debug" | ||
|
||
# run Java | ||
CMD="java $JAVA_OPTIONS com.xceptance.xlt.report.scorecard.UpdateMain" | ||
ARGS="" | ||
I=1 | ||
while [ $I -le $# ]; do | ||
eval x=\${$I} | ||
ARGS="$ARGS \"$x\"" | ||
I=$((I+1)) | ||
done | ||
eval $CMD "$ARGS" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.