Skip to content

Commit ba37d21

Browse files
committed
implementation of normal/static field + fixes for normal method call + add unit tests
-> Just run: "make tests", and check your adb logcat :)
1 parent dd56373 commit ba37d21

File tree

6 files changed

+489
-111
lines changed

6 files changed

+489
-111
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.PHONY: test
2+
3+
tests:
4+
$(MAKE) -C src/tests/javawrapper

distribute.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,9 @@ if [ $? -eq 0 ]; then
7171
export NDK_CCACHE="ccache"
7272
fi
7373

74-
set -x
74+
if [ "X$DEBUG" != "X" ]; then
75+
set -x
76+
fi
7577

7678
function try () {
7779
"$@" || exit -1

0 commit comments

Comments
 (0)