mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
Compare commits
1 Commits
ci-debuggi
...
ci-debug
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
98d54accb1 |
@@ -11,8 +11,8 @@ test:
|
|||||||
- .gradle/caches
|
- .gradle/caches
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- ./gradlew --no-daemon -Djava.security.egd=file:/dev/urandom animalSnifferMain animalSnifferTest
|
- ./gradlew --no-daemon animalSnifferMain animalSnifferTest
|
||||||
- ./gradlew --no-daemon -Djava.security.egd=file:/dev/urandom test
|
- ./gradlew --no-daemon test
|
||||||
|
|
||||||
after_script:
|
after_script:
|
||||||
# these file change every time but should not be cached
|
# these file change every time but should not be cached
|
||||||
|
|||||||
@@ -55,8 +55,3 @@ project.afterEvaluate {
|
|||||||
into 'src/main/res/raw'
|
into 'src/main/res/raw'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType(Test) {
|
|
||||||
// Use entropy-gathering device specified on command line, if any
|
|
||||||
systemProperty 'java.security.egd', System.getProperty('java.security.egd')
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -31,8 +31,3 @@ task jarTest(type: Jar, dependsOn: testClasses) {
|
|||||||
artifacts {
|
artifacts {
|
||||||
testOutput jarTest
|
testOutput jarTest
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType(Test) {
|
|
||||||
// Use entropy-gathering device specified on command line, if any
|
|
||||||
systemProperty 'java.security.egd', System.getProperty('java.security.egd')
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -44,8 +44,3 @@ task jarTest(type: Jar, dependsOn: testClasses) {
|
|||||||
artifacts {
|
artifacts {
|
||||||
testOutput jarTest
|
testOutput jarTest
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType(Test) {
|
|
||||||
// Use entropy-gathering device specified on command line, if any
|
|
||||||
systemProperty 'java.security.egd', System.getProperty('java.security.egd')
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -26,7 +26,5 @@ dependencies {
|
|||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType(Test) {
|
tasks.withType(Test) {
|
||||||
// Use entropy-gathering device specified on command line, if any
|
|
||||||
systemProperty 'java.security.egd', System.getProperty('java.security.egd')
|
|
||||||
systemProperty 'java.library.path', 'libs'
|
systemProperty 'java.library.path', 'libs'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -186,7 +186,4 @@ project.afterEvaluate {
|
|||||||
preBuild.dependsOn.add(verifyTranslations)
|
preBuild.dependsOn.add(verifyTranslations)
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType(Test) {
|
|
||||||
// Use entropy-gathering device specified on command line, if any
|
|
||||||
systemProperty 'java.security.egd', System.getProperty('java.security.egd')
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -11,8 +11,3 @@ dependencies {
|
|||||||
|
|
||||||
signature 'org.codehaus.mojo.signature:java16:1.1@signature'
|
signature 'org.codehaus.mojo.signature:java16:1.1@signature'
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType(Test) {
|
|
||||||
// Use entropy-gathering device specified on command line, if any
|
|
||||||
systemProperty 'java.security.egd', System.getProperty('java.security.egd')
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -32,8 +32,3 @@ dependencies {
|
|||||||
|
|
||||||
signature 'org.codehaus.mojo.signature:java16:1.1@signature'
|
signature 'org.codehaus.mojo.signature:java16:1.1@signature'
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType(Test) {
|
|
||||||
// Use entropy-gathering device specified on command line, if any
|
|
||||||
systemProperty 'java.security.egd', System.getProperty('java.security.egd')
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -123,7 +123,7 @@ public abstract class BriarIntegrationTest<C extends BriarIntegrationTestCompone
|
|||||||
private volatile Waiter validationWaiter;
|
private volatile Waiter validationWaiter;
|
||||||
private volatile Waiter deliveryWaiter;
|
private volatile Waiter deliveryWaiter;
|
||||||
|
|
||||||
protected final static int TIMEOUT = 15000;
|
protected final static int TIMEOUT = 30000;
|
||||||
protected C c0, c1, c2;
|
protected C c0, c1, c2;
|
||||||
|
|
||||||
private final File testDir = TestUtils.getTestDirectory();
|
private final File testDir = TestUtils.getTestDirectory();
|
||||||
|
|||||||
Reference in New Issue
Block a user