summaryrefslogtreecommitdiff
path: root/src/systemc/tests/systemc/bugs/bug_185/bug_185.cpp
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2018-05-24 01:37:55 -0700
committerGabe Black <gabeblack@google.com>2018-08-08 10:09:54 +0000
commit16fa8d7cc8c92f5ab879e4cf9c6c0bbb3567860f (patch)
tree7b6faaacb4574a555e561534aa4a8508c0624c32 /src/systemc/tests/systemc/bugs/bug_185/bug_185.cpp
parent7235d3b5211d0ba8f528d930a4c1e7ad62eec51a (diff)
downloadgem5-16fa8d7cc8c92f5ab879e4cf9c6c0bbb3567860f.tar.xz
systemc: Import tests from the Accellera systemc distribution.
Change-Id: Iad76b398949a55d768a34d027a2d8e3739953da6 Reviewed-on: https://gem5-review.googlesource.com/10845 Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com> Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/systemc/tests/systemc/bugs/bug_185/bug_185.cpp')
-rw-r--r--src/systemc/tests/systemc/bugs/bug_185/bug_185.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/systemc/tests/systemc/bugs/bug_185/bug_185.cpp b/src/systemc/tests/systemc/bugs/bug_185/bug_185.cpp
new file mode 100644
index 000000000..d314a3504
--- /dev/null
+++ b/src/systemc/tests/systemc/bugs/bug_185/bug_185.cpp
@@ -0,0 +1,26 @@
+// Bug 185 Test - sc_bv(char) constructor.
+//
+// sc_bv<8> a('1') was yielding an all-zero value rather than all ones.
+
+
+#include "systemc.h"
+
+int sc_main(int argc, char* argv[])
+{
+ sc_bv<8> a('0');
+ sc_bv<9> b('1');
+ sc_bv<11> c(false);
+ sc_bv<11> d(true);
+ sc_bv<11> e(0);
+ sc_bv<11> f(1);
+
+ cout << "a = " << a << endl;
+ cout << "b = " << b << endl;
+ cout << "c = " << c << endl;
+ cout << "d = " << d << endl;
+ cout << "e = " << e << endl;
+ cout << "f = " << f << endl;
+
+ cerr << "Program completed" << endl;
+ return 0;
+}