diff options
author | Israel Rodrigo Faria <israel.faria@gmail.com> | 2019-08-17 19:31:15 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-08-18 15:57:35 -0300 |
commit | b7156655c6faee7179cdc302f7f9d9219a5f6a31 (patch) | |
tree | 8619ecffdfe01c5c25202b113705549f66c57e78 /community/bitcoin/skip-fs-test-utf8.patch | |
parent | 504d01e99c774df91423147e7a0fd6860df5b6da (diff) | |
download | aports-b7156655c6faee7179cdc302f7f9d9219a5f6a31.tar.bz2 aports-b7156655c6faee7179cdc302f7f9d9219a5f6a31.tar.xz |
community/bitcoin: upgrade to 0.18.1
Diffstat (limited to 'community/bitcoin/skip-fs-test-utf8.patch')
-rw-r--r-- | community/bitcoin/skip-fs-test-utf8.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/community/bitcoin/skip-fs-test-utf8.patch b/community/bitcoin/skip-fs-test-utf8.patch new file mode 100644 index 0000000000..3a6f8a102e --- /dev/null +++ b/community/bitcoin/skip-fs-test-utf8.patch @@ -0,0 +1,13 @@ +diff --git a/src/test/fs_tests.cpp b/src/test/fs_tests.cpp +index 6d5a6641f..b504a3cbb 100644 +--- a/src/test/fs_tests.cpp ++++ b/src/test/fs_tests.cpp +@@ -15,7 +15,7 @@ BOOST_AUTO_TEST_CASE(fsbridge_fstream) + fs::path tmpfolder = GetDataDir(); + // tmpfile1 should be the same as tmpfile2 + fs::path tmpfile1 = tmpfolder / "fs_tests_₿_🏃"; +- fs::path tmpfile2 = tmpfolder / L"fs_tests_₿_🏃"; ++ fs::path tmpfile2 = tmpfolder / "fs_tests_₿_🏃"; + { + fsbridge::ofstream file(tmpfile1); + file << "bitcoin"; |