Changeset 302
- Timestamp:
- 02/26/05 05:23:08 (4 years ago)
- svk:copy_cache_prev:
- 1041
- Files:
-
- 3 modified
-
lib/Perl6/lib/Test.pm (modified) (1 diff)
-
src/Posix.hs (modified) (2 diffs)
-
t/op/not.t (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lib/Perl6/lib/Test.pm
r252 r302 85 85 } 86 86 87 sub diag (Str $diag) { 88 say "# ", $diag; 89 } 90 91 87 92 END { 88 93 if (!$plan) { -
src/Posix.hs
r211 r302 23 23 sleep, 24 24 getEnvironment, 25 rmdir, 25 26 ) where 26 27 … … 54 55 sleep _ = fail "'sleep' not implemented on this platform." 55 56 57 rmdir :: FilePath -> IO () 58 rmdir _ = fail "'rmdir' not implemented on this platform." 59 56 60 getEnvironment :: IO [(String, String)] 57 61 getEnvironment = do -
t/op/not.t
r265 r302 45 45 ok $not1 == 0, "0 is false"; 46 46 ok $not0 == 1, "1 is true"; 47 48 diag "foo";
