diff options
| author | Michael Bebenita <[email protected]> | 2010-09-10 01:21:29 -0700 |
|---|---|---|
| committer | Michael Bebenita <[email protected]> | 2010-09-10 14:38:31 -0700 |
| commit | a493350eb5ab38ba8a6563f3eb4a090d257b0d3a (patch) | |
| tree | dc984eaa28a55de9f05db0b961a0e67f80ca35ef /src/rt/test/rust_test_harness.h | |
| parent | Added lock_and_signal::signal_all(), and made the rust_kernel::join() use wai... (diff) | |
| download | rust-a493350eb5ab38ba8a6563f3eb4a090d257b0d3a.tar.xz rust-a493350eb5ab38ba8a6563f3eb4a090d257b0d3a.zip | |
Cleanup, refactoring, and some runtime tests.
Diffstat (limited to 'src/rt/test/rust_test_harness.h')
| -rw-r--r-- | src/rt/test/rust_test_harness.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rt/test/rust_test_harness.h b/src/rt/test/rust_test_harness.h index 401015e4..8dd8baaa 100644 --- a/src/rt/test/rust_test_harness.h +++ b/src/rt/test/rust_test_harness.h @@ -13,8 +13,9 @@ public: class rust_test_suite : public rust_test { public: + rust_crate *crate; array_list<rust_test*> tests; - rust_test_suite(); + rust_test_suite(rust_crate *crate); virtual ~rust_test_suite(); bool run(); }; |