summaryrefslogtreecommitdiff
path: root/libs/ardour/test/session_test.h
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2016-09-19 10:10:23 +1000
committerTim Mayberry <mojofunk@gmail.com>2016-09-19 14:47:52 +1000
commit75ade6b2df3926b965f5af6ec6d7ed8659167b73 (patch)
treebebac522062cb1c6b2a3782f4388d26e77402671 /libs/ardour/test/session_test.h
parent1a0ac520219ad2904914d710ebee873a01edf872 (diff)
Add test to create new Sessions with localized names and reopen them
This test is successful on Linux but fails on Windows currently because of the incorrect realpath implementation for windows in pbd/path_expand.cc
Diffstat (limited to 'libs/ardour/test/session_test.h')
-rw-r--r--libs/ardour/test/session_test.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/ardour/test/session_test.h b/libs/ardour/test/session_test.h
index 9aba3d9847..37228bac15 100644
--- a/libs/ardour/test/session_test.h
+++ b/libs/ardour/test/session_test.h
@@ -7,10 +7,12 @@ class SessionTest : public CppUnit::TestFixture
CPPUNIT_TEST_SUITE (SessionTest);
CPPUNIT_TEST (new_session);
CPPUNIT_TEST (new_session_from_template);
+ CPPUNIT_TEST (open_session_utf8_path);
CPPUNIT_TEST_SUITE_END ();
public:
void new_session ();
void new_session_from_template ();
+ void open_session_utf8_path ();
};