From ec6fd4eeca3fa468cffb25b472eb349c1fed06aa Mon Sep 17 00:00:00 2001 From: ruki Date: Mon, 22 Feb 2016 08:49:20 +0800 Subject: modify tests script --- tests/static_library_c++/src/test.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 tests/static_library_c++/src/test.cpp (limited to 'tests/static_library_c++/src/test.cpp') diff --git a/tests/static_library_c++/src/test.cpp b/tests/static_library_c++/src/test.cpp new file mode 100755 index 000000000..72e03272b --- /dev/null +++ b/tests/static_library_c++/src/test.cpp @@ -0,0 +1,10 @@ +#include "interface.h" +#include + +using namespace std; + +int main(int argc, char** argv) +{ + cout << "add(1, 2) = " << add(1, 2) << endl; + return 0; +} -- cgit v1.3.1