Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
djinni
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
djinni
Commits
ce6d6620
Commit
ce6d6620
authored
Jun 24, 2015
by
Andrew Twyman
Committed by
Jacob Potter
Jun 26, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fail Java test on errors
failonerror defaults to false on exec and java rules in ant.
parent
3737f461
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
test-suite/java/build.xml
test-suite/java/build.xml
+3
-3
No files found.
test-suite/java/build.xml
View file @
ce6d6620
<?xml version="1.0"?>
<project
name=
"Djinni-test"
default=
"test"
>
<target
name=
"test"
description=
"blah"
>
<exec
executable=
"make"
>
<exec
executable=
"make"
failonerror=
"true"
>
<arg
value=
"-j12"
/>
<arg
value=
"libDjinniTestNative.dylib"
/>
</exec>
...
...
@@ -11,7 +11,7 @@
<src
path=
"../generated-src"
/>
<src
path=
"../handwritten-src"
/>
</javac>
<java
classname=
"org.junit.runner.JUnitCore"
fork=
"true"
>
<java
classname=
"org.junit.runner.JUnitCore"
fork=
"true"
failonerror=
"true"
>
<classpath
path=
"hamcrest-core-1.3.jar:junit-4.11.jar:classes"
/>
<jvmarg
value=
"-Xcheck:jni"
/>
<arg
value=
"com.dropbox.djinni.test.AllTests"
/>
...
...
@@ -19,7 +19,7 @@
</target>
<target
name=
"clean"
>
<delete
dir=
"classes"
/>
<exec
executable=
"make"
>
<exec
executable=
"make"
failonerror=
"true"
>
<arg
value=
"clean"
/>
</exec>
</target>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment