summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2017-02-15 16:57:00 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2017-02-16 16:00:14 +0000
commite354380e82af1a5d2d01be409c9653c14300ce59 (patch)
tree3a94a0c131f519697492fb3bf56dab1588306e21
parente80835bb0aa3e140a90f47800cddbb9a477dc8c1 (diff)
downloaddbus-e354380e82af1a5d2d01be409c9653c14300ce59.tar.gz
dbus-e354380e82af1a5d2d01be409c9653c14300ce59.tar.bz2
dbus-e354380e82af1a5d2d01be409c9653c14300ce59.zip
shell-test: Don't use _dbus_get_tmpdir()
There's no particular reason to be using a temporary directory (it's just some arbitrary string), and it will be harder for future changes to eradicate uses of a temporary directory that is shared between users if we list it here. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=99828 Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> Reviewed-by: Philip Withnall <withnall@endlessm.com>
-rw-r--r--test/shell-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/shell-test.c b/test/shell-test.c
index 07585abb..794757f3 100644
--- a/test/shell-test.c
+++ b/test/shell-test.c
@@ -172,7 +172,7 @@ main (int argc, char **argv)
test_command_line ("/opt/gnome/bin/service-start", NULL);
test_command_line ("grep", "-l", "-r", "-i", "'whatever'", "files*.c", NULL);
test_command_line ("/home/boston/johnp/devel-local/dbus/test/test-segfault", NULL);
- test_command_line ("ls", "-l", "-a", "--colors", _dbus_get_tmpdir(), NULL);
+ test_command_line ("ls", "-l", "-a", "--colors", NULL);
test_command_line ("rsync-to-server", NULL);
test_command_line ("test-segfault", "--no-segfault", NULL);
test_command_line ("evolution", "mailto:pepe@cuco.com", NULL);