diff options
author | Michael Vogt <mvo@debian.org> | 2013-12-23 13:35:08 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-12-23 13:35:08 +0100 |
commit | a077861ad0f2e643307c2380a060a3b11914aa34 (patch) | |
tree | ca2045f4fa9be147e8e41a5530ecc3314dcf6546 /test/libapt | |
parent | 68e0172140872d8044b3c768a6bea3ac58d426c4 (diff) |
add basic tests for GetTempDir()
Diffstat (limited to 'test/libapt')
-rw-r--r-- | test/libapt/fileutl_test.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/libapt/fileutl_test.cc b/test/libapt/fileutl_test.cc index b6b8ac579..462bdefd9 100644 --- a/test/libapt/fileutl_test.cc +++ b/test/libapt/fileutl_test.cc @@ -38,5 +38,18 @@ int main(int argc,char *argv[]) return 1; } + // GetTempDir() + unsetenv("TMPDIR"); + equals(GetTempDir(), "/tmp"); + + setenv("TMPDIR", "", 1); + equals(GetTempDir(), "/tmp"); + + setenv("TMPDIR", "/not-there-no-really-not", 1); + equals(GetTempDir(), "/tmp"); + + setenv("TMPDIR", "/usr", 1); + equals(GetTempDir(), "/usr"); + return 0; } |