home · contact · privacy
Replace old with new client, drop redo system needed to build old one.
[plomrogue] / test_server.sh
index 8d6d7b4edfddc5c2fb64251fecf6b53932496dc9..e1549598302eed29d152d524fc056bb4fd3a1973 100755 (executable)
@@ -1,14 +1,14 @@
 #!/bin/sh
 
-./redo
+./build.sh
 echo "Copying tested server script to ./tested_server.py."
-cp ./plomrogue-server.py ./testing/tested_server.py
+cp ./roguelike-server ./testing/tested_server.py
 echo "Copying tested C library source to ./tested_server_lib.c."
-cp ./libplomrogue.c ./testing/tested_server_lib.c
+cp ./src/server/libplomrogue.c ./testing/tested_server_lib.c
 
 cp ./testing/start _test
 echo "Starting server on save file '_test' copied from ./testing/start."
-python3 -m cProfile -o ./testing/cProfile plomrogue-server.py -l _test &
+python3 -m cProfile -o ./testing/cProfile roguelike-server -l _test &
 
 echo "Waiting until ./server/in is ready for writing."
 while [ ! -e ./server/in ]