Changeset 21679

Show
Ignore:
Timestamp:
10/20/08 12:35:58 (5 years ago)
Author:
tokuhirom
Message:

remove nspr support

Location:
lang/cplusplus/llv8call/trunk
Files:
2 removed
3 modified

Legend:

Unmodified
Added
Removed
  • lang/cplusplus/llv8call/trunk/t/080_pure/02_test-tcp.js

    r21210 r21679  
    44v8ext.loadScript("org.json.json2"); 
    55v8ext.loadScript("org.coderepos.test.tcp"); 
    6 var TCPSocket = org.coderepos.nspr.TCPSocket; 
    76var Socket = org.coderepos.socket.Socket; 
    87 
  • lang/cplusplus/llv8call/trunk/t/090_fcgi/02_run.js

    r21187 r21679  
    22 
    33check_lib('org.coderepos.fcgi'); 
    4 check_lib('org.coderepos.nspr', 'Process'); 
    54check_lib('org.coderepos.clearsilver'); 
    65check_lib('org.coderepos.fs', 'Temp'); 
    76check_lib('org.coderepos.os', 'OS'); 
    87check_lib('org.coderepos.posix'); 
     8check_lib('org.coderepos.subprocess', 'SubProcess'); 
    99check_lib('org.coderepos.curl'); 
    1010v8ext.loadScript('org.coderepos.test.tcp'); 
     
    4242        }, 
    4343        server : function (port) { 
    44             var lighty = new Process(ENV.TEST_LIGHTTPD, ["-D", "-f", "t/090_fcgi/lighty.conf"], {}, {}); 
     44            var lighty = new SubProcess([ENV.TEST_LIGHTTPD, "-D", "-f", "t/090_fcgi/lighty.conf"]); 
    4545            POSIX.sleep(30); 
    46             lighty.Kill(); 
     46            lighty.kill(); 
    4747            exit(1); 
    4848        }, 
  • lang/cplusplus/llv8call/trunk/t/util.js

    r21606 r21679  
    55require("t/Test.Simple/Test/More.js"); 
    66 
    7 v8ext.loadBinary( "org.coderepos.nspr" ); 
    87v8ext.loadScript( "org.json.json2" ); 
    98