Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
harfbuzz
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
certo
harfbuzz
Commits
aee6db83
Commit
aee6db83
authored
Apr 19, 2019
by
Vladimir Bashkirtsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial commit
parents
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
207 additions
and
0 deletions
+207
-0
Makefile
Makefile
+8
-0
harfbuzz-1.8.1-test_fix-1.patch
harfbuzz-1.8.1-test_fix-1.patch
+186
-0
harfbuzz-1.8.1.tar.bz2
harfbuzz-1.8.1.tar.bz2
+0
-0
harfbuzz.groups
harfbuzz.groups
+13
-0
No files found.
Makefile
0 → 100644
View file @
aee6db83
all
:
tar
xf harfbuzz-1.8.1.tar.bz2
patch
-Np1
-d
harfbuzz-1.8.1 < harfbuzz-1.8.1-test_fix-1.patch
cd
harfbuzz-1.8.1
&&
./configure
--prefix
=
/usr
--with-gobject
$(MAKE)
-C
harfbuzz-1.8.1
-
$(MAKE)
-C
harfbuzz-1.8.1 check
$(MAKE)
-C
harfbuzz-1.8.1
install
rm
-rf
harfbuzz-1.8.1
harfbuzz-1.8.1-test_fix-1.patch
0 → 100644
View file @
aee6db83
Submitted By: Ken Moffat <ken at linuxfromscratch dot org>
Date: 2018-06-25
Initial Package Version: 1.8.1
Upstream Status: Applied
Origin: Upstream
Description: Fixes the subset tests which were failing whether or not the
FontTools packages was installed. They now pass if it is installed and
skip if it is missing.
diff --git a/test/subset/run-tests.py b/test/subset/run-tests.py
index 1cd1a19f6..bc0d082e2 100755
--- a/test/subset/run-tests.py
+++ b/test/subset/run-tests.py
@@ -15,75 +15,94 @@
from subset_test_suite import SubsetTestSuite
+# https://stackoverflow.com/a/377028
+def which(program):
+ def is_exe(fpath):
+ return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
+
+ fpath, _ = os.path.split(program)
+ if fpath:
+ if is_exe(program):
+ return program
+ else:
+ for path in os.environ["PATH"].split(os.pathsep):
+ exe_file = os.path.join(path, program)
+ if is_exe(exe_file):
+ return exe_file
+
+ return None
+
+ttx = which ("ttx")
+ots_sanitize = which ("ots-sanitize")
+
+if not ttx:
+ print("TTX is not present, skipping test.")
+ sys.exit (77)
def cmd(command):
p = subprocess.Popen (
command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
- (stdoutdata, stderrdata) = p.communicate()
+ (stdoutdata, stderrdata) = p.communicate ()
print (stderrdata, end="") # file=sys.stderr
return stdoutdata, p.returncode
-def read_binary(file_path):
- with open(file_path, 'rb') as f:
- return f.read()
+def read_binary (file_path):
+ with open (file_path, 'rb') as f:
+ return f.read ()
def fail_test(test, cli_args, message):
print ('ERROR: %s' % message)
print ('Test State:')
- print (' test.font_path %s' % os.path.abspath(test.font_path))
- print (' test.profile_path %s' % os.path.abspath(test.profile_path))
- print (' test.unicodes %s' % test.unicodes())
- expected_file = os.path.join(test_suite.get_output_directory(),
- test.get_font_name())
- print (' expected_file %s' % os.path.abspath(expected_file))
+ print (' test.font_path %s' % os.path.abspath (test.font_path))
+ print (' test.profile_path %s' % os.path.abspath (test.profile_path))
+ print (' test.unicodes %s' % test.unicodes ())
+ expected_file = os.path.join(test_suite.get_output_directory (),
+ test.get_font_name ())
+ print (' expected_file %s' % os.path.abspath (expected_file))
return 1
def run_test(test, should_check_ots):
- out_file = os.path.join(tempfile.mkdtemp(), test.get_font_name() + '-subset.ttf')
+ out_file = os.path.join(tempfile.mkdtemp (), test.get_font_name () + '-subset.ttf')
cli_args = [hb_subset,
"--font-file=" + test.font_path,
"--output-file=" + out_file,
- "--unicodes=%s" % test.unicodes()]
- cli_args.extend (test.get_profile_flags())
- print (' '.join(cli_args))
- _, return_code = cmd(cli_args)
+ "--unicodes=%s" % test.unicodes ()]
+ cli_args.extend (test.get_profile_flags ())
+ print (' '.join (cli_args))
+ _, return_code = cmd (cli_args)
if return_code:
- return fail_test(test, cli_args, "%s returned %d" % (' '.join(cli_args), return_code))
+ return fail_test (test, cli_args, "%s returned %d" % (' '.join (cli_args), return_code))
- expected_ttx, return_code = run_ttx(os.path.join(test_suite.get_output_directory(),
- test.get_font_name()))
+ expected_ttx, return_code = run_ttx (os.path.join (test_suite.get_output_directory (),
+ test.get_font_name ()))
if return_code:
- return fail_test(test, cli_args, "ttx (expected) returned %d" % (return_code))
+ return fail_test (test, cli_args, "ttx (expected) returned %d" % (return_code))
actual_ttx, return_code = run_ttx(out_file)
if return_code:
- return fail_test(test, cli_args, "ttx (actual) returned %d" % (return_code))
+ return fail_test (test, cli_args, "ttx (actual) returned %d" % (return_code))
print ("stripping checksums.")
expected_ttx = strip_check_sum (expected_ttx)
actual_ttx = strip_check_sum (actual_ttx)
if not actual_ttx == expected_ttx:
- for line in unified_diff(expected_ttx.splitlines(1), actual_ttx.splitlines(1)):
- sys.stdout.write(line)
- sys.stdout.flush()
+ for line in unified_diff (expected_ttx.splitlines (1), actual_ttx.splitlines (1)):
+ sys.stdout.write (line)
+ sys.stdout.flush ()
return fail_test(test, cli_args, 'ttx for expected and actual does not match.')
if should_check_ots:
print ("Checking output with ots-sanitize.")
- if not check_ots(out_file):
- return fail_test(test, cli_args, 'ots for subsetted file fails.')
+ if not check_ots (out_file):
+ return fail_test (test, cli_args, 'ots for subsetted file fails.')
return 0
-def run_ttx(file):
+def run_ttx (file):
print ("ttx %s" % file)
- cli_args = ["ttx",
- "-q",
- "-o-",
- file]
- return cmd(cli_args)
+ return cmd([ttx, "-q", "-o-", file])
def strip_check_sum (ttx_string):
return re.sub ('checkSumAdjustment value=["]0x([0-9a-fA-F])+["]',
@@ -91,14 +110,13 @@
def strip_check_sum (ttx_string):
ttx_string.decode (), count=1)
def has_ots ():
- _, returncode = cmd(["which", "ots-sanitize"])
- if returncode:
+ if not ots_sanitize:
print("OTS is not present, skipping all ots checks.")
return False
return True
def check_ots (path):
- ots_report, returncode = cmd(["ots-sanitize", path])
+ ots_report, returncode = cmd ([ots_sanitize, path])
if returncode:
print("OTS Failure: %s" % ots_report);
return False
@@ -110,24 +128,19 @@
def check_ots (path):
sys.exit (1)
hb_subset, args = args[0], args[1:]
-if not len(args):
+if not len (args):
print ("No tests supplied.")
sys.exit (1)
-_, returncode = cmd(["which", "ttx"])
-if returncode:
- print("TTX is not present, skipping test.")
- sys.exit (77)
-
has_ots = has_ots()
fails = 0
for path in args:
- with io.open(path, mode="r", encoding="utf-8") as f:
+ with io.open (path, mode="r", encoding="utf-8") as f:
print ("Running tests in " + path)
- test_suite = SubsetTestSuite(path, f.read())
- for test in test_suite.tests():
- fails += run_test(test, has_ots)
+ test_suite = SubsetTestSuite (path, f.read())
+ for test in test_suite.tests ():
+ fails += run_test (test, has_ots)
if fails != 0:
print (str (fails) + " test(s) failed.")
harfbuzz-1.8.1.tar.bz2
0 → 100644
View file @
aee6db83
File added
harfbuzz.groups
0 → 100644
View file @
aee6db83
headers
/usr/include/.*
bin
/usr/bin/.*
/usr/share/gir-1.0/.*
lib
/usr/lib/lib.*
/usr/lib/cmake/.*
/usr/lib/girepository-1.0/.*
pkg
/usr/lib/pkgconfig/.*
doc
/usr/share/gtk-doc/.*
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment