diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-05-18 02:48:55 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-05-18 02:50:10 +0200 |
commit | fc348670e4b595787bc672b7d8bb18d812c7f8cc (patch) | |
tree | 918d775e826d216c8d71c943d9a22a4c4b6ceccc /community | |
parent | 51026c10c08d90ed6e8f17d994273aa55538bfd3 (diff) | |
download | aports-fc348670e4b595787bc672b7d8bb18d812c7f8cc.tar.bz2 aports-fc348670e4b595787bc672b7d8bb18d812c7f8cc.tar.xz |
community/openjdk8: add very basic check function
Diffstat (limited to 'community')
-rw-r--r-- | community/openjdk8/APKBUILD | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/community/openjdk8/APKBUILD b/community/openjdk8/APKBUILD index bf3a83262a..a231946a62 100644 --- a/community/openjdk8/APKBUILD +++ b/community/openjdk8/APKBUILD @@ -153,6 +153,13 @@ build() { make || return 1 } +# TODO: Run tests or at least try to compile and run hello world. +check() { + cd "$builddir"/openjdk.build/images/j2sdk-image + + ./bin/java -version +} + package() { cd "$builddir" |