diff options
author | Florent Le Coz <louiz@louiz.org> | 2015-09-18 09:39:49 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2015-09-18 21:50:54 +0200 |
commit | 33fa1dcd5a87035de1d9b8df65e5c7551b4bbd1b (patch) | |
tree | 4aed271a59ee3ce6967c56e68388fc711a21dd38 /src/test.cpp | |
parent | ea0b2f2bb871e7760d1936bb9b193655682df413 (diff) | |
download | biboumi-33fa1dcd5a87035de1d9b8df65e5c7551b4bbd1b.tar.gz biboumi-33fa1dcd5a87035de1d9b8df65e5c7551b4bbd1b.tar.bz2 biboumi-33fa1dcd5a87035de1d9b8df65e5c7551b4bbd1b.tar.xz biboumi-33fa1dcd5a87035de1d9b8df65e5c7551b4bbd1b.zip |
Also a xdg_data_path
Diffstat (limited to 'src/test.cpp')
-rw-r--r-- | src/test.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/test.cpp b/src/test.cpp index b8737e6..3ac0332 100644 --- a/src/test.cpp +++ b/src/test.cpp @@ -13,6 +13,7 @@ #include <utils/revstr.hpp> #include <irc/irc_user.hpp> #include <utils/split.hpp> +#include <utils/xdg.hpp> #include <xmpp/jid.hpp> #include <irc/iid.hpp> #include <string.h> @@ -423,6 +424,12 @@ int main() res = xdg_config_path("coucou.txt"); std::cout << res << std::endl; assert(res == "/some_weird_dir/biboumi/coucou.txt"); + + ::setenv("XDG_DATA_HOME", "/datadir", 1); + res = xdg_data_path("bonjour.txt"); + std::cout << res << std::endl; + assert(res == "/datadir/biboumi/bonjour.txt"); + } return 0; |