# HG changeset patch # User Nobuyasu Oshiro # Date 1338120516 -32400 # Node ID f2fc4689d3d65a787e7a061b69cfd9c247bd8f5b # Parent 888143c20a4cc769c7609159209626f4bba1945d modify SystemTest.java diff -r 888143c20a4c -r f2fc4689d3d6 SystemTest.java --- a/SystemTest.java Sun May 27 21:06:26 2012 +0900 +++ b/SystemTest.java Sun May 27 21:08:36 2012 +0900 @@ -14,9 +14,7 @@ public static void main(String[] argv) { -// String[] cmd = {"/usr/local/bin/konoha","/Users/aotokage/testProgram/konoha/math.k"}; -// String[] cmd = {"/usr/local/bin/konoha","math.k"}; - String[] cmd = {"konoha","math.k"}; + String[] cmd = {"/usr/local/bin/konoha","./test/math.k"}; Runtime run = Runtime.getRuntime(); try { Process p = run.exec(cmd); diff -r 888143c20a4c -r f2fc4689d3d6 http/url.k --- a/http/url.k Sun May 27 21:06:26 2012 +0900 +++ b/http/url.k Sun May 27 21:08:36 2012 +0900 @@ -60,7 +60,7 @@ out <<< this.method + " /" + this.uri + " HTTP/1.1" <<< EOL; out <<< "HOST: " + this.host <<< EOL; for (String key : keys) { - out <<< key +": " + property[key] <<< EOL; + out <<< key +": " + property[key] <<< EOL; } out <<< EOL; out <<< body <<< EOL;