diff options
author | Pekka Paalanen <ppaalanen@gmail.com> | 2012-12-03 16:58:25 +0200 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2012-12-03 10:10:22 -0500 |
commit | bfdf44ec48589a971593f75b5e0d4af05dadbe95 (patch) | |
tree | 56ab6d5891a14c97885c20c01a87d1a3e8384075 /tests | |
parent | 7415e8eb053d7f2e7254466ab0acbdab0faf4742 (diff) |
tests: rename temporary files
This is libwayland, not weston, so call the temporary files
wayland-tests-*, not weston-tests-*.
This is a candidate for the stable branch.
Signed-off-by: Pekka Paalanen <ppaalanen@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/connection-test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/connection-test.c b/tests/connection-test.c index 45744a0..1ac88d2 100644 --- a/tests/connection-test.c +++ b/tests/connection-test.c @@ -425,7 +425,7 @@ marshal_demarshal(struct marshal_data *data, TEST(connection_marshal_demarshal) { struct marshal_data data; - char f[] = "/tmp/weston-tests-XXXXXX"; + char f[] = "/tmp/wayland-tests-XXXXXX"; setup_marshal_data(&data); @@ -478,7 +478,7 @@ TEST(connection_marshal_alot) * for both regular data an fds. */ for (i = 0; i < 2000; i++) { - strcpy(f, "/tmp/weston-tests-XXXXXX"); + strcpy(f, "/tmp/wayland-tests-XXXXXX"); data.value.h = mkstemp(f); assert(data.value.h >= 0); unlink(f); |