summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/Unit/CMakeLists.txt1
-rw-r--r--test/Unit/ipow.cpp2
-rw-r--r--test/Unit/selected_int_kind.cpp35
3 files changed, 37 insertions, 1 deletions
diff --git a/test/Unit/CMakeLists.txt b/test/Unit/CMakeLists.txt
index a5b4a2c..0b648ef 100644
--- a/test/Unit/CMakeLists.txt
+++ b/test/Unit/CMakeLists.txt
@@ -1 +1,2 @@
add_libflang_test(ipow ipow.cpp)
+add_libflang_test(selected_int_kind selected_int_kind.cpp)
diff --git a/test/Unit/ipow.cpp b/test/Unit/ipow.cpp
index 91cff22..b2dd985 100644
--- a/test/Unit/ipow.cpp
+++ b/test/Unit/ipow.cpp
@@ -11,7 +11,7 @@
#include <iostream>
#include "Numerical/Integer.h"
-bool testPowI4(int32_t x, int32_t y, int32_t expected) {
+static bool testPowI4(int32_t x, int32_t y, int32_t expected) {
x = libflang_pow_i4_i4(x, y);
if(x != expected)
std::cout << "Error in libflang_pow_i4_i4 - expected " << expected
diff --git a/test/Unit/selected_int_kind.cpp b/test/Unit/selected_int_kind.cpp
new file mode 100644
index 0000000..78b431b
--- /dev/null
+++ b/test/Unit/selected_int_kind.cpp
@@ -0,0 +1,35 @@
+//===-- selected_int_kind.cpp - Test libflang_selected_int_kind -----------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is dual licensed under the MIT and the University of Illinois Open
+// Source Licenses. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include <assert.h>
+#include <iostream>
+#include "Core/Core.h"
+
+static bool test(int32_t x, int32_t expected) {
+ x = libflang_selected_int_kind(x);
+ if(x != expected)
+ std::cout << "Error in libflang_selected_int_kind - expected " << expected
+ << ", got " << x << std::endl;
+ return x != expected;
+}
+
+int main() {
+ if(test(-2, 1))
+ return 1;
+ if(test(1,1))
+ return 1;
+ if(test(7,4))
+ return 1;
+ if(test(13,8))
+ return 1;
+ if(test(1000,-1))
+ return 1;
+ return 0;
+}
+