diff options
author | Nathan Binkert <nate@binkert.org> | 2008-10-02 11:27:01 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2008-10-02 11:27:01 -0700 |
commit | b25755993bbc04be0235975e2967533995a493f0 (patch) | |
tree | 3295891b4f535535dce20c2f51c4402aba025a2a /src/unittest/bitvectest.cc | |
parent | 52493b27202fb61aaae74779ebcd91ca8f2bbc2c (diff) | |
download | gem5-b25755993bbc04be0235975e2967533995a493f0.tar.xz |
unittest: Add unit tests to the scons framework.
Also fix the unit tests so they actually compile correctly.
Diffstat (limited to 'src/unittest/bitvectest.cc')
-rw-r--r-- | src/unittest/bitvectest.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/unittest/bitvectest.cc b/src/unittest/bitvectest.cc index 2f01d636f..29069081b 100644 --- a/src/unittest/bitvectest.cc +++ b/src/unittest/bitvectest.cc @@ -28,10 +28,11 @@ * Authors: Nathan Binkert */ -#include <iostream.h> - +#include <iostream> #include <vector> +using namespace std; + int main() { |