URI: 
       tMake tests faster by not starting three different sessions after each other. - ratox - FIFO based tox client
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit c21933644001ec721d602490a3a6392b73cba592
   DIR parent c38aca268244d3c7004d6987a63d5756df148209
  HTML Author: pranomostro <pranomestro@gmail.com>
       Date:   Thu, 15 Dec 2016 17:43:49 +0100
       
       Make tests faster by not starting three different sessions after each other.
       
       Diffstat:
         M Makefile                            |       2 +-
         D tests/test-chat                     |       9 ---------
         D tests/test-file                     |       9 ---------
         A tests/test-ratox                    |      10 ++++++++++
         D tests/test-request                  |       8 --------
       
       5 files changed, 11 insertions(+), 27 deletions(-)
       ---
   DIR diff --git a/Makefile b/Makefile
       t@@ -65,6 +65,6 @@ clean:
        
        check: all
                @echo testing
       -        @cd tests; sh test-chat && sh test-file && sh test-request
       +        @cd tests; sh test-ratox
        
        .PHONY: all binlib bin install uninstall clean check
   DIR diff --git a/tests/test-chat b/tests/test-chat
       t@@ -1,9 +0,0 @@
       -. ./common
       -
       -spawn_users
       -add_friends
       -send_text
       -echo :: $(basename $0) - $(echolor 2 OK)
       -
       -cleanup
       -exit 0
   DIR diff --git a/tests/test-file b/tests/test-file
       t@@ -1,9 +0,0 @@
       -. ./common
       -
       -spawn_users
       -add_friends
       -send_file
       -echo :: $(basename $0) - $(echolor 2 OK)
       -
       -cleanup
       -exit 0
   DIR diff --git a/tests/test-ratox b/tests/test-ratox
       t@@ -0,0 +1,10 @@
       +. ./common
       +
       +spawn_users
       +add_friends
       +send_text
       +send_file
       +echo :: $(basename $0) - $(echolor 2 OK)
       +
       +cleanup
       +exit 0
   DIR diff --git a/tests/test-request b/tests/test-request
       t@@ -1,8 +0,0 @@
       -. ./common
       -
       -spawn_users
       -add_friends
       -echo :: $(basename $0) - $(echolor 2 OK)
       -
       -cleanup
       -exit 0