about summary refs log tree commit diff stats
path: root/003trace.cc
Commit message (Expand)AuthorAgeFilesLines
* mu.subx: 6 failing tests remainingKartik Agaram2020-05-221-0/+1
* 6201Kartik Agaram2020-04-091-3/+3
* 6200 - --dump is not needed for incremental tracesKartik Agaram2020-04-091-2/+1
* 5866Kartik Agaram2020-01-021-0/+1
* 5865Kartik Agaram2020-01-021-1/+1
* 5819Kartik Agaram2019-12-221-1/+1
* 5764Kartik Agaram2019-11-261-0/+2
* 5499Kartik Agaram2019-07-311-1/+1
* 5485 - promote SubX to top-levelKartik Agaram2019-07-271-23/+42
* 5001 - drop the :(scenario) DSLKartik Agaram2019-03-121-23/+21
* 4994Kartik Agaram2019-03-031-7/+29
* 4992Kartik Agaram2019-02-271-0/+3
* 4987 - support `browse_trace` tool in SubXKartik Agaram2019-02-251-212/+253
* 4656Kartik Agaram2018-10-021-2/+1
* 4573Kartik Agaram2018-09-211-1/+1
* 4546Kartik Agaram2018-09-151-9/+13
* 4427 - support for '--trace' argvKartik Agaram2018-07-261-2/+0
* 4422Kartik Agaram2018-07-261-6/+5
* 4421Kartik Agaram2018-07-261-0/+23
* 4418Kartik Agaram2018-07-261-2/+2
* 4413Kartik Agaram2018-07-251-1/+1
* 4235 - fix a build issue for Apple clang 900.0.38Kartik K. Agaram2018-04-201-1/+1
* 4139Kartik K. Agaram2017-12-051-5/+7
* 4138Kartik K. Agaram2017-12-051-1/+1
* 4089Kartik K. Agaram2017-10-221-1/+0
* 3966Kartik K. Agaram2017-07-091-1/+1
* 3917Kartik K. Agaram2017-06-161-1/+13
* 3905Kartik K. Agaram2017-06-101-1/+1
* 3750Kartik K. Agaram2017-03-021-20/+12
* 3749Kartik K. Agaram2017-03-021-22/+20
* 3675Kartik K. Agaram2016-11-151-4/+8
* 3663 - fix a refcounting bug: '(type)' != 'type'Kartik K. Agaram2016-11-101-0/+3
* 3627 - selective dumping a single labelKartik K. Agaram2016-11-051-1/+5
* 3561Kartik K. Agaram2016-10-221-2/+3
* 3532Kartik K. Agaram2016-10-201-4/+0
* 3522Kartik K. Agaram2016-10-191-5/+5
* 3516 - print the trace as it is generatedKartik K. Agaram2016-10-181-1/+3
* 3370Kartik K. Agaram2016-09-161-4/+5
* 3291Kartik K. Agaram2016-09-021-2/+3
* 3274Kartik K. Agaram2016-08-281-22/+22
* 3273Kartik K. Agaram2016-08-281-4/+6
* 3272Kartik K. Agaram2016-08-281-1/+1
* 3270Kartik K. Agaram2016-08-281-18/+23
* 3269Kartik K. Agaram2016-08-281-32/+36
* 3267Kartik K. Agaram2016-08-281-6/+0
* 3245 - refuse to run programs with errorsKartik K. Agaram2016-08-221-1/+2
* 3212 - bugfix in refcount managementKartik K. Agaram2016-08-171-0/+12
* 3101 - purge .traces/ dir from repo historyKartik K. Agaram2016-07-051-7/+4
* 3049 - clearer message for some test failuresKartik K. Agaram2016-06-111-8/+18
* 3032Kartik K. Agaram2016-06-021-2/+0
on' href='/akkartik/mu/blame/cpp/002test?h=hlt&id=e26a1c859352421eaa7232987739ed5e8c79ce3f'>^
eb3a527a ^
51530916 ^

0f125d5f ^
37537bf3 ^


86acd630 ^

0f125d5f ^
eb3a527a ^
65ccad4c ^
6673e1fc ^
40be2522 ^
eb3a527a ^



37537bf3 ^









51530916 ^
f278a15d ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110








                                                                               








                                                       
                       
                                                                             




                      
                                                                                                    
                     
                                                                 




                        
                                                                                                                    

                                                                   
                                                                 

   


                     
                                   
                                            






                                                                                  
 
                                

                                   
                                                             
                          


                
               
                         


                                         

             
           
 
 
       
                         



                                            


                   
             
                          

 
                                  


                                                           

 
                                    
                   
                                                                    
                                                                 
                                                                       



                       









                                              
                        
                 
//: A simple test harness. To create new tests define functions starting with
//: 'test_'. To run all tests so defined, run:
//:   $ wart test
//:
//: So far it seems tasteful for layers to never ever reach back to modify
//: previously-defined tests. Every test is a contract once written, and should
//: pass as-is if it is included, regardless of how much later layers change
//: the program. Avoid writing 'temporary' tests that only work with some
//: subsets of the program.

:(before "End Types")
typedef void (*test_fn)(void);

:(before "End Globals")
const test_fn Tests[] = {
  #include "test_list"  // auto-generated; see makefile
};

bool Run_tests = false;
bool Passed = true;  // set this to false inside any test to indicate failure
long Num_failures = 0;

#define CHECK(X) \
  if (!(X)) { \
    ++Num_failures; \
    cerr << "\nF - " << __FUNCTION__ << "(" << __FILE__ << ":" << __LINE__ << "): " << #X << '\n'; \
    Passed = false; \
    return;  /* Currently we stop at the very first failure. */ \
  }

#define CHECK_EQ(X, Y) \
  if ((X) != (Y)) { \
    ++Num_failures; \
    cerr << "\nF - " << __FUNCTION__ << "(" << __FILE__ << ":" << __LINE__ << "): " << #X << " == " << #Y << '\n'; \
    cerr << "  got " << (X) << '\n';  /* BEWARE: multiple eval */ \
    Passed = false; \
    return;  /* Currently we stop at the very first failure. */ \
  }

:(before "End Setup")
Passed = true;

:(before "End Commandline Parsing")
if (argc > 1 && is_equal(argv[1], "test")) {
  Run_tests = true;  --argc;  ++argv;  // shift 'test' out of commandline args
}

:(before "End Main")
if (Run_tests) {
  // Test Runs
  // we run some tests and then exit; assume no state need be maintained afterward

  // End Test Run Initialization
  time_t t; time(&t);
  cerr << "C tests: " << ctime(&t);
  for (size_t i=0; i < sizeof(Tests)/sizeof(Tests[0]); ++i) {
//?     cerr << i << '\n';
    run_test(i);
  }
  // End Tests
  cerr << '\n';
  if (Num_failures > 0) {
    cerr << Num_failures << " failure"
         << (Num_failures > 1 ? "s" : "")
         << '\n';
    return 1;
  }
  return 0;
}

:(code)
void run_test(size_t i) {
  if (i >= sizeof(Tests)/sizeof(Tests[0])) {
    cerr << "no test " << i << '\n';
    return;
  }
  setup();
  // End Test Setup
  (*Tests[i])();
  teardown();
  if (Passed) cerr << ".";
}

bool is_integer(const string& s) {
  return s.find_first_not_of("0123456789-") == string::npos
      && s.find('-', 1) == string::npos
      && s.find_first_of("0123456789") != string::npos;
}

long long int to_integer(string n) {
  char* end = NULL;
  // safe because string.c_str() is guaranteed to be null-terminated
  long long int result = strtoll(n.c_str(), &end, /*any base*/0);
  if (*end != '\0') cerr << "tried to convert " << n << " to number\n";
  assert(*end == '\0');
  return result;
}

void test_is_integer() {
  CHECK(is_integer("1234"));
  CHECK(is_integer("-1"));
  CHECK(!is_integer("234.0"));
  CHECK(is_integer("-567"));
  CHECK(!is_integer("89-0"));
  CHECK(!is_integer("-"));
  CHECK(!is_integer("1e3"));  // not supported
}

:(before "End Includes")
#include<cstdlib>