
- Fix common (arch-independent) tests to explicitly target -linux triple. - Override the triple inside arch-specific tests. - Add cflags to common tests. - Update individual tests. - Expand pipe stderr `|&` shorthand. Reviewed By: rafauler Differential Revision: https://reviews.llvm.org/D125548
12 lines
270 B
C
12 lines
270 B
C
#ifndef BOLT_TEST_STUB_H
|
|
#define BOLT_TEST_STUB_H
|
|
|
|
void *memcpy(void *dest, const void *src, unsigned long n);
|
|
void *memset(void *dest, int c, unsigned long n);
|
|
int printf(const char *format, ...);
|
|
void exit(int status);
|
|
int puts(const char *s);
|
|
int rand(void);
|
|
|
|
#endif
|