shithub: aubio

Download patch

ref: 60384e9334401a70cbd694721bd77c32f71fa91f
parent: 752ce6dd5a4b8667a9aaf5d3e78fbc39bc2217df
author: Paul Brossier <piem@piem.org>
date: Thu Nov 29 10:21:03 EST 2018

[tests] [win] workaround to escape backslashes

--- a/tests/wscript_build
+++ b/tests/wscript_build
@@ -9,6 +9,8 @@
 
 test_sound_target = '44100Hz_44100f_sine441_stereo.wav'
 test_sound_abspath = bld.path.get_bld().make_node(test_sound_target)
+# workaround to double escape backslash characters on windows
+test_sound_abspath = str(test_sound_abspath).replace('\\', '\\\\')
 
 bld(name='create_tests_source',
     rule='python ${SRC} ${TGT}',