[DEV] correct dependency and test
This commit is contained in:
parent
10017b88a4
commit
2cfdf9e26d
@ -15,7 +15,6 @@
|
|||||||
</classpathentry>
|
</classpathentry>
|
||||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-14">
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-14">
|
||||||
<attributes>
|
<attributes>
|
||||||
<attribute name="module" value="true"/>
|
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
<attribute name="maven.pomderived" value="true"/>
|
||||||
</attributes>
|
</attributes>
|
||||||
</classpathentry>
|
</classpathentry>
|
||||||
|
@ -53,7 +53,7 @@ package_job:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- test_job
|
- test_job
|
||||||
script:
|
script:
|
||||||
- mvn $MAVEN_CLI_OPTS package
|
- mvn $MAVEN_CLI_OPTS package -Dmaven.test.skip=true
|
||||||
artifacts:
|
artifacts:
|
||||||
when: on_success
|
when: on_success
|
||||||
expire_in: 3 day
|
expire_in: 3 day
|
||||||
|
@ -75,7 +75,7 @@ public class TestBasicLog {
|
|||||||
Log.print("test direct [START]");
|
Log.print("test direct [START]");
|
||||||
// test de 10 secondes contre 0.0?? second quand le niveau n'est pas assez grand ...
|
// test de 10 secondes contre 0.0?? second quand le niveau n'est pas assez grand ...
|
||||||
long timeStart = System.currentTimeMillis();
|
long timeStart = System.currentTimeMillis();
|
||||||
for (int iii = 0; iii < 100000; iii++)
|
for (int iii = 0; iii < 100000000; iii++)
|
||||||
Log2.debug("test direct");
|
Log2.debug("test direct");
|
||||||
long timeStop = System.currentTimeMillis();
|
long timeStop = System.currentTimeMillis();
|
||||||
Log.print("test direct [END] : " + timeStart + " to " + timeStop + " ==> delta=" + (timeStop - timeStart));
|
Log.print("test direct [END] : " + timeStart + " to " + timeStop + " ==> delta=" + (timeStop - timeStart));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user