about summary refs log tree commit diff stats
path: root/tests/test_cmd_roster.h
Commit message (Expand)AuthorAgeFilesLines
* Added /roster clearnick commandJames Booth2014-03-161-0/+7
* Added /roster remove testsJames Booth2014-03-161-0/+2
* Added /roster add testJames Booth2014-03-161-0/+2
* Added cmd_roster testJames Booth2014-03-161-0/+5
href='/akkartik/mu/commit/subx/run?h=hlt&id=445843f27798e371d34d91860b05bbf68fa37223'>445843f2 ^
f0b99910 ^


6ff9ce26 ^

5f21a5e7 ^
6ff9ce26 ^


5f21a5e7 ^
ebe2bda3 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
                  
                                                    


               



                                                                                            


        

                    
                                  


         
                            
       
#!/usr/bin/env zsh
# Run commonly-used SubX programs using the SubX VM.

if [ $# -eq 0 ]
then
  echo "Usage: $0 <binary name without directory> <args>"
  echo
  echo "Naming convention: Binaries starting with 'ex' will be assumed to live in examples/"
  echo "Other binaries will be assumed to live in apps/"
  exit 1
fi

if [[ $1 == 'ex'* ]]
then
  CFLAGS=-g ./subx run examples/$*
  exit $?
fi

CFLAGS=-g ./subx run apps/$*
exit $?