more unittests (already found/fixed some bugs)
git-svn-id: http://skia.googlecode.com/svn/trunk@348 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/forth/SampleForth.cpp b/forth/SampleForth.cpp
index 2877fb6..cfd1172 100644
--- a/forth/SampleForth.cpp
+++ b/forth/SampleForth.cpp
@@ -150,7 +150,7 @@
///////////////////////////////////////////////////////////////////////////////
-void Forth_test_stdwords();
+void Forth_test_stdwords(bool verbose);
class ForthView : public SkView {
ForthEnv fEnv;
@@ -160,7 +160,7 @@
SkForthCtx fContext;
public:
ForthView() {
- Forth_test_stdwords();
+ Forth_test_stdwords(false);
load_words(&fEnv, &fContext);
@@ -186,9 +186,6 @@
"draw1 "
);
#endif
- ForthEnv env;
- env.parse("3 5 = IF 42 . ELSE -42 . THEN 99 .");
- env.run();
}
protected: