Skip to content

Instantly share code, notes, and snippets.

@jeandersonbc
Created August 6, 2018 18:44
Show Gist options
  • Save jeandersonbc/8a105e8b34b7904a0e6b8a76e393fcd7 to your computer and use it in GitHub Desktop.
Save jeandersonbc/8a105e8b34b7904a0e6b8a76e393fcd7 to your computer and use it in GitHub Desktop.
JPF-nhandler
$ ant build
Buildfile: /Users/jeandersonbc/projects/jpf/jpf-nhandler/build.xml
-init:
-compile-annotations:
-compile-main:
-compile-peers:
-compile-classes:
-compile-tests:
-compile-examples:
compile:
-jar-jvm:
-jar-jpf:
[jar] Warning: skipping jar archive /Users/jeandersonbc/projects/jpf/jpf-nhandler/build/jpf-nhandler-classes.jar because no files were included.
[jar] Warning: skipping jar archive /Users/jeandersonbc/projects/jpf/jpf-nhandler/build/jpf-nhandler-classes.jar because no files were included.
-jar-annotations:
[jar] Warning: skipping jar archive /Users/jeandersonbc/projects/jpf/jpf-nhandler/build/jpf-nhandler-annotations.jar because no files were included.
[jar] Warning: skipping jar archive /Users/jeandersonbc/projects/jpf/jpf-nhandler/build/jpf-nhandler-annotations.jar because no files were included.
build:
BUILD SUCCESSFUL
Total time: 0 seconds
$ ant clean test
Buildfile: /Users/jeandersonbc/projects/jpf/jpf-nhandler/build.xml
clean:
[delete] Deleting directory /Users/jeandersonbc/projects/jpf/jpf-nhandler/build
-init:
[mkdir] Created dir: /Users/jeandersonbc/projects/jpf/jpf-nhandler/build
-compile-annotations:
[mkdir] Created dir: /Users/jeandersonbc/projects/jpf/jpf-nhandler/build/annotations
-compile-main:
[mkdir] Created dir: /Users/jeandersonbc/projects/jpf/jpf-nhandler/build/main
[mkdir] Created dir: /Users/jeandersonbc/projects/jpf/jpf-nhandler/build/converter
[javac] Compiling 53 source files to /Users/jeandersonbc/projects/jpf/jpf-nhandler/build/main
[javac] warning: [options] bootstrap class path not set in conjunction with -source 1.6
[javac] /Users/jeandersonbc/projects/jpf/jpf-nhandler/src/main/nhandler/conversion/jpf2jvm/JPF2JVMGenericConverter.java:227: warning: ReflectionFactory is internal proprietary API and may be removed in a future release
[javac] ctor = sun.reflect.ReflectionFactory.getReflectionFactory().newConstructorForSerialization(cl, Object.class.getConstructor());
[javac] ^
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] 2 warnings
-compile-peers:
[mkdir] Created dir: /Users/jeandersonbc/projects/jpf/jpf-nhandler/build/peers
-compile-classes:
-compile-tests:
[mkdir] Created dir: /Users/jeandersonbc/projects/jpf/jpf-nhandler/build/tests
[javac] Compiling 17 source files to /Users/jeandersonbc/projects/jpf/jpf-nhandler/build/tests
[javac] warning: [options] bootstrap class path not set in conjunction with -source 1.6
[javac] 1 warning
-compile-examples:
[mkdir] Created dir: /Users/jeandersonbc/projects/jpf/jpf-nhandler/build/examples
[javac] Compiling 10 source files to /Users/jeandersonbc/projects/jpf/jpf-nhandler/build/examples
[javac] warning: [options] bootstrap class path not set in conjunction with -source 1.6
[javac] 1 warning
compile:
-jar-jvm:
[jar] Building jar: /Users/jeandersonbc/projects/jpf/jpf-nhandler/build/jpf-nhandler.jar
-jar-jpf:
[jar] Warning: skipping jar archive /Users/jeandersonbc/projects/jpf/jpf-nhandler/build/jpf-nhandler-classes.jar because no files were included.
[jar] Warning: skipping jar archive /Users/jeandersonbc/projects/jpf/jpf-nhandler/build/jpf-nhandler-classes.jar because no files were included.
-jar-annotations:
[jar] Warning: skipping jar archive /Users/jeandersonbc/projects/jpf/jpf-nhandler/build/jpf-nhandler-annotations.jar because no files were included.
[jar] Warning: skipping jar archive /Users/jeandersonbc/projects/jpf/jpf-nhandler/build/jpf-nhandler-annotations.jar because no files were included.
build:
test:
[junit] Running converter.JPF2JVMTest
[junit] Tests run: 5, Failures: 5, Errors: 0, Skipped: 0, Time elapsed: 0.895 sec
[junit] Test converter.JPF2JVMTest FAILED
[junit] Running converter.JVM2JPFTest
[junit] Tests run: 5, Failures: 5, Errors: 0, Skipped: 0, Time elapsed: 0.883 sec
[junit] Test converter.JVM2JPFTest FAILED
[junit] Running converter.specific.JPF2JVMjava_lang_reflectTest
[junit] Tests run: 3, Failures: 3, Errors: 0, Skipped: 0, Time elapsed: 0.669 sec
[junit] Test converter.specific.JPF2JVMjava_lang_reflectTest FAILED
[junit] Running converter.specific.JPF2JVMjava_utilTest
[junit] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.505 sec
[junit] Test converter.specific.JPF2JVMjava_utilTest FAILED
[junit] Running converter.specific.java_ioTest
[junit] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.489 sec
[junit] Test converter.specific.java_ioTest FAILED
[junit] Running converter.specific.java_langTest
[junit] Tests run: 2, Failures: 2, Errors: 0, Skipped: 0, Time elapsed: 0.599 sec
[junit] Test converter.specific.java_langTest FAILED
[junit] Running converter.specific.java_textTest
[junit] Tests run: 2, Failures: 2, Errors: 0, Skipped: 0, Time elapsed: 0.597 sec
[junit] Test converter.specific.java_textTest FAILED
[junit] Running converter.specific.java_util_regexTest
[junit] Tests run: 2, Failures: 2, Errors: 0, Skipped: 0, Time elapsed: 0.598 sec
[junit] Test converter.specific.java_util_regexTest FAILED
[junit] Running on_the_fly.StringTest
[junit] Tests run: 14, Failures: 14, Errors: 0, Skipped: 0, Time elapsed: 1.544 sec
[junit] Test on_the_fly.StringTest FAILED
BUILD SUCCESSFUL
Total time: 14 seconds
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment