summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2019-09-04 22:33:18 +0800
committerruki <[email protected]>2019-09-04 09:19:53 +0800
commit3d72809db048911efec3d52106dd6968349ef4d1 (patch)
treefeab2983b5a56fbb89bf02c09b78226835127172
parent2abe0ac3e71743147c433e0b901eaf3d244ef099 (diff)
fix hybrid test
-rw-r--r--tests/projects/hybrid/static_library/src/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/projects/hybrid/static_library/src/main.cpp b/tests/projects/hybrid/static_library/src/main.cpp
index 2e70301ce..effbee53a 100644
--- a/tests/projects/hybrid/static_library/src/main.cpp
+++ b/tests/projects/hybrid/static_library/src/main.cpp
@@ -3,10 +3,10 @@
int main(int argc, char** argv)
{
test1();
- test2();
#ifdef MACOSX
+ test2();
test3();
- test4();
#endif
+ test4();
return 0;
}