From 16fa8d7cc8c92f5ab879e4cf9c6c0bbb3567860f Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Thu, 24 May 2018 01:37:55 -0700 Subject: systemc: Import tests from the Accellera systemc distribution. Change-Id: Iad76b398949a55d768a34d027a2d8e3739953da6 Reviewed-on: https://gem5-review.googlesource.com/10845 Reviewed-by: Giacomo Travaglini Maintainer: Gabe Black --- .../tests/systemc/bugs/bug_147853/bug_147853.cpp | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/systemc/tests/systemc/bugs/bug_147853/bug_147853.cpp (limited to 'src/systemc/tests/systemc/bugs/bug_147853/bug_147853.cpp') 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; +} -- cgit v1.2.3