summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--tests/giomm_ioerror/main.cc2
-rw-r--r--tests/giomm_simple/main.cc2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 231f5265..827ea210 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2008-12-12 Jonathon Jongsma <jonathon@quotidian.org>
+ * tests/giomm_ioerror/main.cc:
+ * tests/giomm_simple/main.cc: use common filenames so that people other than
+ murrayc can run the tests without errors
+
+2008-12-12 Jonathon Jongsma <jonathon@quotidian.org>
+
* gio/src/memoryoutputstream.hg: Fix a copy-paste error where I accidentally
left a FilterOutputStream type in
diff --git a/tests/giomm_ioerror/main.cc b/tests/giomm_ioerror/main.cc
index e8c76b70..28b92178 100644
--- a/tests/giomm_ioerror/main.cc
+++ b/tests/giomm_ioerror/main.cc
@@ -21,7 +21,7 @@ int main(int argc, char** argv)
try
{
- Glib::RefPtr<Gio::File> file = Gio::File::create_for_path("/home/murrayc/test.txt");
+ Glib::RefPtr<Gio::File> file = Gio::File::create_for_path("/etc/fstab");
if(!file)
std::cerr << "Gio::File::create_for_path() returned an empty RefPtr." << std::endl;
diff --git a/tests/giomm_simple/main.cc b/tests/giomm_simple/main.cc
index 9a6b60e4..d0c5f798 100644
--- a/tests/giomm_simple/main.cc
+++ b/tests/giomm_simple/main.cc
@@ -9,7 +9,7 @@ int main(int argc, char** argv)
try
{
- Glib::RefPtr<Gio::File> file = Gio::File::create_for_path("/home/murrayc/test.txt");
+ Glib::RefPtr<Gio::File> file = Gio::File::create_for_path("/etc/fstab");
if(!file)
std::cerr << "Gio::File::create_for_path() returned an empty RefPtr." << std::endl;