Changeset 094009a


Ignore:
Timestamp:
Feb 27, 2004, 6:41:41 PM (20 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
c61918e
Parents:
213a3eb
Message:
Build tester with same options as everything else
Reformat tester functions
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Makefile.in

    r5a95b69 r094009a  
    4343        ./athstatic $(CC) -o owl owl.o $(OBJS) $(LDFLAGS) $(LIBS)
    4444
    45 tester: $(OBJS) tester.o
    46         $(CC) -o tester tester.o $(OBJS) $(LDFLAGS) $(LIBS)
     45tester: $(AUTOGEN) $(OBJS) tester.o
     46        ./athstatic $(CC) -o tester tester.o $(OBJS) $(LDFLAGS) $(LIBS)
    4747
    4848test: tester
  • tester.c

    rb2b0773 r094009a  
    77owl_global g;
    88
    9 void screeninit() {
     9void screeninit()
     10{
    1011  char buff[1024];
    1112 
     
    2627}
    2728
    28 void test1() {
     29void test1()
     30{
    2931  int j;
    3032  owl_editwin e;
     
    5860}
    5961
    60 void test2(char *in) {
     62void test2(char *in)
     63{
    6164  owl_fmtext t;
    6265
     
    7174}
    7275
    73 void test3() {
     76void test3()
     77{
    7478  ZNotice_t *n;
    7579
     
    7882}
    7983
    80 void colorinfo() {
     84void colorinfo()
     85{
    8186  char buff[1024];
    8287 
     
    8994}
    9095
    91 void test4() {
     96void test4()
     97{
    9298  int j;
    9399  char buff[1024];
     
    109115}
    110116
    111 void test_keypress() {
     117void test_keypress()
     118{
    112119  int j, rev;
    113120  char buff[1024], buff2[64];
     
    136143
    137144
    138 int main(int argc, char **argv, char **env) {
     145int main(int argc, char **argv, char **env)
     146{
    139147  int numfailures=0;
    140148  if (argc==2 && 0==strcmp(argv[1],"reg")) {
     
    159167  return(0);
    160168}
    161 
Note: See TracChangeset for help on using the changeset viewer.