18 lines
446 B
Plaintext
18 lines
446 B
Plaintext
|
summary: Basic smoke test
|
||
|
prepare:
|
||
|
how: install
|
||
|
package:
|
||
|
- java-11-openjdk-devel
|
||
|
- xmvn-tools
|
||
|
discover:
|
||
|
how: shell
|
||
|
tests:
|
||
|
- name: /smoke/classpath-import
|
||
|
test: |
|
||
|
CLASSPATH+=":$(xmvn-resolve com.sun.xml.dtd-parser:dtd-parser)"
|
||
|
export CLASSPATH
|
||
|
/usr/lib/jvm/java-11-openjdk/bin/javac plans/Smoke.java
|
||
|
/usr/lib/jvm/java-11-openjdk/bin/java -cp "${CLASSPATH}:plans" Smoke
|
||
|
execute:
|
||
|
how: tmt
|