summaryrefslogtreecommitdiff
path: root/src/systemc/tests/systemc/bugs/bug_147853/bug_147853.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/tests/systemc/bugs/bug_147853/bug_147853.cpp')
-rw-r--r--src/systemc/tests/systemc/bugs/bug_147853/bug_147853.cpp34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/systemc/tests/systemc/bugs/bug_147853/bug_147853.cpp b/src/systemc/tests/systemc/bugs/bug_147853/bug_147853.cpp
new file mode 100644
index 000000000..82c20d6a3
--- /dev/null
+++ b/src/systemc/tests/systemc/bugs/bug_147853/bug_147853.cpp
@@ -0,0 +1,34 @@
+// This tests that sc_clock values are updated during the value update phase
+// not during the execution phase of a delta cycle.
+
+#include "systemc.h"
+
+
+SC_MODULE(Test) {
+ sc_in_clk clk;
+ sc_event e1;
+ sc_time d;
+
+ void main() {
+ cerr << sc_time_stamp() <<" " << name() << " clk = " << clk.read() << "\n";
+ e1.notify(d);
+ }
+ SC_CTOR(Test) :d(5,SC_NS) {
+ SC_METHOD(main);
+ sensitive << e1;
+ }
+};
+
+
+int sc_main(int argc,char *argv[]) {
+
+ Test t1("t1");
+ sc_clock clk("clk",10,SC_NS);
+ Test t2("t2");
+
+ t1.clk(clk);
+ t2.clk(clk);
+
+ sc_start(50,SC_NS);
+ return 0;
+}