summaryrefslogtreecommitdiff
path: root/testing/cffi1
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2019-09-20 18:38:17 +0200
committerArmin Rigo <arigo@tunes.org>2019-09-20 18:38:17 +0200
commitbf8b794fbf1ea0b799b50dc9b4f84b8c6df682f2 (patch)
tree92ee89eeeb686b38097c81400a837578567aebe6 /testing/cffi1
parent32a8b399a43e7d86074d9b734a8badc79bf5ac14 (diff)
downloadcffi-bf8b794fbf1ea0b799b50dc9b4f84b8c6df682f2.tar.gz
oops
Diffstat (limited to 'testing/cffi1')
-rw-r--r--testing/cffi1/test_re_python.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/cffi1/test_re_python.py b/testing/cffi1/test_re_python.py
index 892268b..d0b1671 100644
--- a/testing/cffi1/test_re_python.py
+++ b/testing/cffi1/test_re_python.py
@@ -17,7 +17,7 @@ def setup_module(mod):
int add43(int x, ...) { return x; }
int globalvar42 = 1234;
const int globalconst42 = 4321;
- const char *const globalconsthello;
+ const char *const globalconsthello = "hello";
struct foo_s;
typedef struct bar_s { int x; signed char a[]; } bar_t;
enum foo_e { AA, BB, CC };
@@ -65,7 +65,7 @@ def setup_module(mod):
int add43(int, ...);
int globalvar42;
const int globalconst42;
- const char *const globalconsthello = "hello";
+ const char *const globalconsthello;
int no_such_function(int);
int no_such_globalvar;
struct foo_s;