blob: a94f2929c9ac19685cdb66c4b875f7998d485b29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef LILY_TEST_H
#define LILY_TEST_H
/* define SOURCE_PATH_SIZE to strip away the
leading parts of the full compilation path */
#ifndef SOURCE_PATH_SIZE
#define LILY_FILENAME __FILE__
#else
#define LILY_FILENAME (__FILE__ + SOURCE_PATH_SIZE)
#endif
#endif
|