summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorruki <[email protected]>2017-02-27 11:23:42 +0800
committerruki <[email protected]>2017-02-27 11:23:42 +0800
commit2553386cdc1ab5c3a06072216997d494a086dd74 (patch)
tree9e4b61af6b1e31ccc41f48c0a5ab0808ef0897a9 /tests
parent6ef7b3dd56c093a4a7de91819915694ca3303ddc (diff)
improve travis and tests scipts
Diffstat (limited to 'tests')
-rwxr-xr-xtests/tests20
1 files changed, 16 insertions, 4 deletions
diff --git a/tests/tests b/tests/tests
index 0302826aa..1e826a652 100755
--- a/tests/tests
+++ b/tests/tests
@@ -48,10 +48,6 @@ build "./tests/console_c++"
build "./tests/static_library_c++"
build "./tests/shared_library_c++"
-# build for go
-# build "./tests/console_go"
-# build "./tests/static_library_go"
-
# merge object
build "./tests/merge_object"
@@ -61,8 +57,24 @@ build "./tests/merge_static_library"
# build for macosx
if [ $host = "macosx" ]; then
+ # build for objc/c++
build "./tests/console_objc"
build "./tests/console_objc++"
+
+ # build for swift
build "./tests/console_swift"
+
+ # build for go
+ build "./tests/console_go"
+ build "./tests/static_library_go"
+
+ # build for dlang
+ build "./tests/console_dlang"
+ build "./tests/static_library_dlang"
+
+ # build for rust
+ build "./tests/console_rust"
+ build "./tests/static_library_rust"
+fi
fi