File: test_pretty_print-remove-a-pathname-normalization-st.patch

package info (click to toggle)
openscad 2021.01-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 35,608 kB
  • sloc: cpp: 53,187; sh: 4,384; ansic: 4,382; python: 1,813; yacc: 853; javascript: 762; lex: 417; lisp: 163; xml: 127; makefile: 114
file content (24 lines) | stat: -rw-r--r-- 830 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
From: chrysn <chrysn@fsfe.org>
Date: Thu, 6 Mar 2014 23:12:06 +0100
Subject: test_pretty_print: remove a pathname normalization step

with absolute paths replaced by relative ones in debian (see
debian/rules), what's done in test_pretty_print.py by replacing the
build dir with nothing causes all '.' characters to be removed again.

for a cleaner solution, absolute path removal should be upstremed.
---
 tests/test_pretty_print.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/tests/test_pretty_print.py
+++ b/tests/test_pretty_print.py
@@ -205,7 +205,7 @@
     files = [file for file in files if 'esting' not in file and 'emporary' not in file]
     result = {}
     for fname in files:
-        result[fname.replace(builddir, '')] = tryread(fname)
+        result[fname] = tryread(fname)
     return result