Changeset 86 for trunk/src/compiler_test.erl
- Timestamp:
- 08/06/09 09:55:53 (3 years ago)
- File:
-
- 1 edited
-
trunk/src/compiler_test.erl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/compiler_test.erl
r82 r86 16 16 17 17 compiles_and_reports_progress_warnings_and_errors () -> 18 Compiler = spawn_link (compiler, init, [notify_me (), "fix"]), 18 F = fun compiles_and_reports_progress_warnings_and_errors/2, 19 ok = fixtures: use_tree (tester_test:tree (), F). 20 21 compiles_and_reports_progress_warnings_and_errors (Root, _) -> 22 Compiler = spawn_link (compiler, init, [notify_me (), Root]), 19 23 Compiler ! check, 20 24 Ms = receive_all (), … … 23 27 24 28 stops () -> 25 Compiler = spawn_link (compiler, init, [notify_me (), "fix"]), 29 ok = fixtures: use_tree ([], fun stops/2). 30 31 stops (Root, _) -> 32 Compiler = spawn_link (compiler, init, [notify_me (), Root]), 26 33 Compiler ! check, 27 34 receive_all (),
Note: See TracChangeset
for help on using the changeset viewer.
