Changeset 82 for trunk


Ignore:
Timestamp:
07/17/09 14:02:51 (3 years ago)
Author:
dom
Message:

Removed (accidentally committed) harcoded /home/dom/forge paths.

Location:
trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/compiler_test.erl

    r80 r82  
    1616 
    1717compiles_and_reports_progress_warnings_and_errors () -> 
    18     Compiler = spawn_link (compiler, init, [notify_me (), "/home/dom/forge/fix"]), 
     18    Compiler = spawn_link (compiler, init, [notify_me (), "fix"]), 
    1919    Compiler ! check, 
    2020    Ms = receive_all (), 
     
    2323 
    2424stops () -> 
    25     Compiler = spawn_link (compiler, init, [notify_me (), "/home/com/forge/fix"]), 
     25    Compiler = spawn_link (compiler, init, [notify_me (), "fix"]), 
    2626    Compiler ! check, 
    2727    receive_all (), 
  • trunk/src/directory_watcher_test.erl

    r80 r82  
    7878 
    7979insensitive_to_cwd () -> 
    80     Watcher = spawn_link (directory_watcher, init, ["/home/dom/forge/fix", send_me ()]), 
     80    Watcher = spawn_link (directory_watcher, init, ["fix", send_me ()]), 
    8181    receive_all (), 
    8282    ok = file: set_cwd ("/tmp"), 
  • trunk/src/tests_test.erl

    r80 r82  
    1414 
    1515non_tests_returns_empty_list () -> 
    16     Binary = modules: to_binary ("/home/dom/forge/fix/eg_code.erl"), 
     16    Binary = modules: to_binary ("../fix/eg_code.erl"), 
    1717    {_, eg_code, []} = tests: filter_by_attribute (Binary). 
    1818 
    1919test_exports_returns_list_of_tests_from_unloaded_binary () -> 
    20     File = "/home/dom/forge/fix/eg_test.erl", 
     20    File = "../fix/eg_test.erl", 
    2121    Binary = modules: to_binary (File), 
    2222    false = code: is_loaded (eg_test), 
     
    2525 
    2626test_non_exports_also () -> 
    27     File = "/home/dom/forge/fix/eg_test_not_exports.erl", 
     27    File = "../fix/eg_test_not_exports.erl", 
    2828    Binary = modules: to_binary (File), 
    2929    false = code: is_loaded (eg_test_not_exports), 
Note: See TracChangeset for help on using the changeset viewer.