blob: 71e91894f25bd091d7fd96f269869a85d46ddfbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "lily-test.h"
#include "tests.h"
const char * test_LILY_LOCATION()
{
/* do NOT move the following line, or this test will break! */
if (strcmp(LILY_LOCATION, "tests/macro-tests.c:8") != 0) {
return "LILY_LOCATION refers to the wrong location!";
}
return 0;
}
|