Mock Version: 1.4.14 Mock Version: 1.4.14 ENTER ['do'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target riscv64 --nodeps /builddir/build/SPECS/mftrace.spec'], chrootPath='/var/lib/mock/f31-build-109674-33937/root'env={'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'en_US.UTF-8'}shell=Falselogger=timeout=432000uid=986gid=135user='mockbuild'nspawn_args=[]unshare_net=TrueprintOutput=False) Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target riscv64 --nodeps /builddir/build/SPECS/mftrace.spec'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'en_US.UTF-8'} and shell False Building target platforms: riscv64 Building for target riscv64 setting SOURCE_DATE_EPOCH=1565913600 Wrote: /builddir/build/SRPMS/mftrace-1.2.19-9.fc31.src.rpm Child return code was: 0 ENTER ['do'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target riscv64 --nodeps /builddir/build/SPECS/mftrace.spec'], chrootPath='/var/lib/mock/f31-build-109674-33937/root'env={'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'en_US.UTF-8'}shell=Falselogger=timeout=432000uid=986gid=135user='mockbuild'nspawn_args=[]unshare_net=TrueprintOutput=False) Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target riscv64 --nodeps /builddir/build/SPECS/mftrace.spec'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'en_US.UTF-8'} and shell False Building target platforms: riscv64 Building for target riscv64 setting SOURCE_DATE_EPOCH=1565913600 Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.XOiAof + umask 022 + cd /builddir/build/BUILD + cd /builddir/build/BUILD + rm -rf mftrace-1.2.19 + /usr/bin/gzip -dc /builddir/build/SOURCES/mftrace-1.2.19.tar.gz + /usr/bin/tar -xof - + STATUS=0 + '[' 0 -ne 0 ']' + cd mftrace-1.2.19 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + pathfix.py -pni '/usr/bin/python3 -s' . BUILDSTDERR: recursedown('.') + sed -i -e 's|-Wall -O2|-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fstack-clash-protection|' GNUmakefile.in + find . -type f -name '*.py' + xargs 2to3 -w BUILDSTDERR: RefactoringTool: Skipping optional fixer: buffer BUILDSTDERR: RefactoringTool: Skipping optional fixer: idioms BUILDSTDERR: RefactoringTool: Skipping optional fixer: set_literal BUILDSTDERR: RefactoringTool: Skipping optional fixer: ws_comma BUILDSTDERR: RefactoringTool: Refactored ./afm.py BUILDSTDERR: RefactoringTool: Refactored ./mftrace.py BUILDSTDERR: RefactoringTool: Refactored ./tfm.py BUILDSTDERR: RefactoringTool: Files that were modified: BUILDSTDERR: RefactoringTool: ./afm.py BUILDSTDERR: RefactoringTool: ./mftrace.py BUILDSTDERR: RefactoringTool: ./tfm.py ./afm.py: no change ./mftrace.py: no change ./tfm.py: no change --- ./afm.py (original) +++ ./afm.py (refactored) @@ -48,5 +48,5 @@ if __name__ == '__main__': i = read_afm_file (sys.argv[1]) - print i, i.FullName, i.FontName + print(i, i.FullName, i.FontName) --- ./mftrace.py (original) +++ ./mftrace.py (refactored) @@ -341,8 +341,8 @@ def autotrace_path_to_type1_ops (at_file, bitmap_metrics, tfm_wid, magnification): inv_scale = 1000.0 / magnification - (size_y, size_x, off_x, off_y) = map (lambda m, s = inv_scale: m * s, - bitmap_metrics) + (size_y, size_x, off_x, off_y) = list(map (lambda m, s = inv_scale: m * s, + bitmap_metrics)) ls = open (at_file).readlines () bbox = (10000, 10000, -10000, -10000) @@ -366,10 +366,10 @@ if len (toks) < 1: continue cmd = toks[-1] - args = map (lambda m, s = inv_scale: s * float (m), - toks[:-1]) + args = list(map (lambda m, s = inv_scale: s * float (m), + toks[:-1])) if options.round_to_int: - args = zip_to_pairs (map (round, args)) + args = zip_to_pairs (list(map (round, args))) else: args = zip_to_pairs (args) commands.append ((cmd, args)) @@ -402,13 +402,11 @@ a = na c = expand[c] if options.round_to_int: - a = map (lambda x: '%d' % int (round (x)), - unzip_pairs (a)) + a = ['%d' % int (round (x)) for x in unzip_pairs (a)] else: - a = map (lambda x: '%d %d div' \ + a = ['%d %d div' \ % (int (round (x * options.grid_scale/inv_scale)), - int (round (options.grid_scale/inv_scale))), - unzip_pairs (a)) + int (round (options.grid_scale/inv_scale))) for x in unzip_pairs (a)] t1_outline = t1_outline + ' %s %s\n' % (string.join (a), c) @@ -421,9 +419,9 @@ def potrace_path_to_type1_ops (at_file, bitmap_metrics, tfm_wid, magnification): inv_scale = 1000.0 / magnification - (size_y, size_x, off_x, off_y) = map (lambda m, + (size_y, size_x, off_x, off_y) = list(map (lambda m, s = inv_scale: m * s, - bitmap_metrics) + bitmap_metrics)) ls = open (at_file).readlines () bbox = (10000, 10000, -10000, -10000) @@ -447,8 +445,8 @@ if len (toks) < 1: continue cmd = toks[-1] - args = map (lambda m, s = inv_scale: s * float (m), - toks[:-1]) + args = list(map (lambda m, s = inv_scale: s * float (m), + toks[:-1])) args = zip_to_pairs (args) commands.append ((cmd, args)) @@ -461,8 +459,8 @@ z = (0.0, size_y - off_y - 1.0) for (c, args) in commands: - args = map (lambda x: (x[0] * (1.0 / options.grid_scale), - x[1] * (1.0 / options.grid_scale)), args) + args = [(x[0] * (1.0 / options.grid_scale), + x[1] * (1.0 / options.grid_scale)) for x in args] if c == 'moveto': args = [(args[0][0] - z[0], args[0][1] - z[1])] @@ -505,13 +503,11 @@ t1_outline += ' closepath ' if options.round_to_int: - args = map (lambda x: '%d' % int (round (x)), - unzip_pairs (args)) + args = ['%d' % int (round (x)) for x in unzip_pairs (args)] else: - args = map (lambda x: '%d %d div' \ + args = ['%d %d div' \ % (int (round (x*options.grid_scale/inv_scale)), - int (round (options.grid_scale/inv_scale))), - unzip_pairs (args)) + int (round (options.grid_scale/inv_scale))) for x in unzip_pairs (args)] t1_outline = t1_outline + ' %s %s\n' % (string.join (args), c) @@ -864,7 +860,7 @@ open ('to-ttf.pe', 'w').write (pe_script) if options.verbose: BUILDSTDERR: - print 'Fontforge script', pe_sc+ echo 'Patch #0 (mftrace-shebang.patch):' + /usr/bin/patch --no-backup-if-mismatch -p0 --fuzz=0 + RPM_EC=0 BUILDSTDERR: ++ jobs -p + exit 0 ript + print('Fontforge script', pe_script) system ("%s -script to-ttf.pe %s %s" % (ff_command, shell_escape_filename (raw_name), shell_escape_filename (options.tfm_file))) elif ff_needed and (options.simplify or options.round_to_int or 'ttf' in formats or 'svg' in formats): @@ -886,7 +882,7 @@ def getenv (var, default): - if os.environ.has_key (var): + if var in os.environ: return os.environ[var] else: return default @@ -1095,9 +1091,9 @@ glyph_range = [] for r in options.glyphs: - glyph_subrange = map (int, string.split (r, '-')) + glyph_subrange = list(map (int, string.split (r, '-'))) if len (glyph_subrange) == 2 and glyph_subrange[0] < glyph_subrange[1] + 1: - glyph_range += range (glyph_subrange[0], glyph_subrange[1] + 1) + glyph_range += list(range(glyph_subrange[0], glyph_subrange[1] + 1)) else: glyph_range.append (glyph_subrange[0]) @@ -1349,7 +1345,7 @@ if tfm_try: options.tfm_file = tfm_try - if not os.environ.has_key ("MFINPUTS"): + if "MFINPUTS" not in os.environ: os.environ["MFINPUTS"] = os.getcwd () + ":" ## must change dir before calling mktextfm. @@ -1380,7 +1376,7 @@ if not encoding_file: codingfile = 'tex256.enc' - if not coding_dict.has_key (metric.coding): + if metric.coding not in coding_dict: sys.stderr.write ("Unknown encoding `%s'; assuming tex256.\n" % metric.coding) else: codingfile = coding_dict[metric.coding] @@ -1392,7 +1388,7 @@ (enc_name, encoding) = read_encoding (encoding_file) if not len (options.glyphs): - options.glyphs = range (0, len (encoding)) + options.glyphs = list(range(0, len (encoding))) if not options.gffile: # run mf --- ./tfm.py (original) +++ ./tfm.py (refactored) @@ -21,9 +21,9 @@ def compose_tfm_number (seq): shift = (len (seq)-1)*8 - cs = 0L + cs = 0 for b in seq: - cs = cs + (long (ord (b)) << shift) + cs = cs + (int (ord (b)) << shift) shift = shift - 8 return cs @@ -158,7 +158,7 @@ return 0 tup = self.chars[code - self.start_code] - return tup[0] <> 0 + return tup[0] != 0 def get_char (self,code): tup = self.chars[code - self.start_code] @@ -180,5 +180,5 @@ if __name__=='__main__': t = read_tfm_file (sys.argv[1]) - print t, t.design_size, t.coding + print(t, t.design_size, t.coding) Patch #0 (mftrace-shebang.patch): patching file mftrace.py Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.ZHx4ti + umask 022 + cd /builddir/build/BUILD + cd mftrace-1.2.19 + PYTHON=/usr/bin/python3 + CFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fstack-clash-protection' + export CFLAGS + CXXFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fstack-clash-protection' + export CXXFLAGS + FFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -I/usr/lib64/gfortran/modules' + export FFLAGS + FCFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -I/usr/lib64/gfortran/modules' + export FCFLAGS + LDFLAGS='-Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld' + export LDFLAGS + '[' 1 = 1 ']' BUILDSTDERR: +++ dirname ./configure BUILDSTDERR: ++ find . -name config.guess -o -name config.sub + '[' 1 = 1 ']' + '[' x '!=' 'x-Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld' ']' BUILDSTDERR: ++ find . -name ltmain.sh + ./configure --build=riscv64-redhat-linux-gnu --host=riscv64-redhat-linux-gnu --program-prefix= --disable-dependency-tracking --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info BUILDSTDERR: configure: WARNING: unrecognized options: --disable-dependency-tracking BUILDSTDERR: config.status: WARNING: 'GNUmakefile.in' seems to ignore the --datarootdir setting BUILDSTDERR: config.status: WARNING: 'mftrace.py' seems to ignore the --datarootdir setting BUILDSTDERR: configure: WARNING: unrecognized options: --disable-dependency-tracking + make -j4 + RPM_EC=0 BUILDSTDERR: ++ jobs -p + exit 0 checking for python... -echo no python checking for autotrace... /usr/bin/autotrace checking for potrace... none checking for riscv64-redhat-linux-gnu-gcc... no checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking whether byte ordering is bigendian... no configure: creating ./config.status config.status: creating GNUmakefile config.status: creating mftrace config.status: creating mftrace.spec config.status: creating config.h cc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -I. -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld gf2pbm.c -o gf2pbm Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.UCekHg + umask 022 + cd /builddir/build/BUILD + '[' /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64 '!=' / ']' + rm -rf /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64 BUILDSTDERR: ++ dirname /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64 + mkdir -p /builddir/build/BUILDROOT + mkdir /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64 + cd mftrace-1.2.19 + make install DESTDIR=/builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64 + /usr/lib/rpm/find-debuginfo.sh -j4 --strict-build-id -m -i --build-id-seed 1.2.19-9.fc31 --unique-debug-suffix -1.2.19-9.fc31.riscv64 --unique-debug-src-base mftrace-1.2.19-9.fc31.riscv64 --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 50000000 -S debugsourcefiles.list /builddir/build/BUILD/mftrace-1.2.19 BUILDSTDERR: 33 blocks + /usr/lib/rpm/check-buildroot + /usr/lib/rpm/redhat/brp-ldconfig + /usr/lib/rpm/brp-compress + /usr/lib/rpm/brp-strip-static-archive /usr/bin/strip + /usr/lib/rpm/redhat/brp-python-bytecompile /usr/bin/python 1 0 + /usr/lib/rpm/brp-python-hardlink + /usr/lib/rpm/redhat/brp-mangle-shebangs install -d /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64/usr/share/man/man1 install -m644 mftrace.1 /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64/usr/share/man/man1/ install -d /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64/usr/share/mftrace/ install -m644 afm.py tfm.py /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64/usr/share/mftrace/ echo no python -m compileall /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64/usr/share/mftrace/ no python -m compileall /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64/usr/share/mftrace/ install -d /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64/usr/bin install mftrace /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64/usr/bin install gf2pbm /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64/usr/bin/gf2pbm explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64/usr/bin/gf2pbm extracting debug info from /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64/usr/bin/gf2pbm original debug info size: 68kB, size after compression: 68kB /usr/lib/rpm/sepdebugcrcfix: Updated 1 CRC32s, 0 CRC32s did match. Processing files: mftrace-1.2.19-9.fc31.riscv64 Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.v45R2i + umask 022 + cd /builddir/build/BUILD + cd mftrace-1.2.19 + DOCDIR=/builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64/usr/share/doc/mftrace + export LC_ALL=C + LC_ALL=C + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64/usr/share/doc/mftrace + cp -pr README.txt /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64/usr/share/doc/mftrace + cp -pr ChangeLog /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64/usr/share/doc/mftrace + RPM_EC=0 BUILDSTDERR: ++ jobs -p + exit 0 Executing(%license): /bin/sh -e /var/tmp/rpm-tmp.eOXwhj + umask 022 + cd /builddir/build/BUILD + cd mftrace-1.2.19 + LICENSEDIR=/builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64/usr/share/licenses/mftrace + export LC_ALL=C + LC_ALL=C + export LICENSEDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64/usr/share/licenses/mftrace + cp -pr COPYING /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64/usr/share/licenses/mftrace + RPM_EC=0 BUILDSTDERR: ++ jobs -p + exit 0 Provides: mftrace = 1.2.19-9.fc31 mftrace(riscv-64) = 1.2.19-9.fc31 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: /usr/bin/python3 ld-linux-riscv64-lp64d.so.1()(64bit) ld-linux-riscv64-lp64d.so.1(GLIBC_2.27)(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.27)(64bit) rtld(GNU_HASH) Processing files: mftrace-debugsource-1.2.19-9.fc31.riscv64 Provides: mftrace-debugsource = 1.2.19-9.fc31 mftrace-debugsource(riscv-64) = 1.2.19-9.fc31 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Processing files: mftrace-debuginfo-1.2.19-9.fc31.riscv64 Provides: debuginfo(build-id) = 80e67b6cd69705e5cb74098b9d740f361a9af492 mftrace-debuginfo = 1.2.19-9.fc31 mftrace-debuginfo(riscv-64) = 1.2.19-9.fc31 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Recommends: mftrace-debugsource(riscv-64) = 1.2.19-9.fc31 Checking for unpackaged file(s): /usr/lib/rpm/check-files /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64 Wrote: /builddir/build/RPMS/mftrace-debugsource-1.2.19-9.fc31.riscv64.rpm Wrote: /builddir/build/RPMS/mftrace-debuginfo-1.2.19-9.fc31.riscv64.rpm Wrote: /builddir/build/RPMS/mftrace-1.2.19-9.fc31.riscv64.rpm Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.QizMZh + umask 022 + cd /builddir/build/BUILD + cd mftrace-1.2.19 + /usr/bin/rm -rf /builddir/build/BUILDROOT/mftrace-1.2.19-9.fc31.riscv64 + RPM_EC=0 BUILDSTDERR: ++ jobs -p + exit 0 Child return code was: 0