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
|
#include <pg_query.h>
#include <assert.h>
#include <pthread.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "parse_tests.c"
#ifdef USE_VALGRIND
#define THREAD_COUNT 50
#else
#define THREAD_COUNT 50
#endif
void* test_runner(void*);
int main() {
size_t i;
int ret;
pthread_t threads[THREAD_COUNT];
for (i = 0; i < THREAD_COUNT; i += 1) {
ret = pthread_create(&threads[i], NULL, test_runner, NULL);
if (ret) {
perror("ERROR creating pthread");
return 1;
}
}
for (i = 0; i < THREAD_COUNT; i += 1) {
pthread_join(threads[i], NULL);
}
printf("\n");
return 0;
}
void* test_runner(void* unused_pthread_arg) {
assert(unused_pthread_arg == NULL);
size_t i;
for (i = 0; i < testsLength; i += 2) {
PgQueryParseResult result = pg_query_parse(tests[i]);
if (result.error) {
printf("%s\n", result.error->message);
} else if (strcmp(result.parse_tree, tests[i + 1]) == 0) {
printf(".");
} else {
printf("INVALID result for \"%s\"\nexpected: %s\nactual: %s\n", tests[i], tests[i + 1], result.parse_tree);
}
pg_query_free_parse_result(result);
}
return NULL;
}
|