diff options
author | Ingo Molnar <[email protected]> | 2013-10-07 13:27:23 +0200 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2013-10-09 08:49:03 +0200 |
commit | 20c99e82173bed9e4e0013ec45c0b2b3b80b65d5 (patch) | |
tree | b6954bcf7f48893b30d04dfc358b964cda38b58e /tools/perf/config/feature-checks/test-libpython.c | |
parent | 1f7c645ab4b8326fef5afcd842795e071ecce9df (diff) |
tools/perf/build: Harmonize the style of the feature testcases
The various testcases used different styles, which was not really
visible as long as they hid in feature-tests.mak. Now that they
are out in the open make them prettier.
( Also delete the leftover, empty feature-tests.mak file. )
Cc: Arnaldo Carvalho de Melo <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Jiri Olsa <[email protected]>
Link: http://lkml.kernel.org/n/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
Diffstat (limited to 'tools/perf/config/feature-checks/test-libpython.c')
-rw-r--r-- | tools/perf/config/feature-checks/test-libpython.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/perf/config/feature-checks/test-libpython.c b/tools/perf/config/feature-checks/test-libpython.c index 72267972fa98..b24b28ad6324 100644 --- a/tools/perf/config/feature-checks/test-libpython.c +++ b/tools/perf/config/feature-checks/test-libpython.c @@ -1,7 +1,8 @@ #include <Python.h> -# + int main(void) { Py_Initialize(); + return 0; } |