Running make check-all on android after cross-compiling to it.

Jeffrey Brusseau bobajeff82 at gmail.com
Wed Sep 17 12:30:42 PDT 2014


I'm trying to run the llvm build tests on android after cross-compiling
with the NDK toolchain on top of my ubuntu-based system. I've run into some
issues.

First since python is required I needed to install the Python 2.7 fork of
Py4A (because Python3 doesn't seem to play nice with llvm's python
scripts). I also needed to install the unittest module as this distribution
of python doesn't come with it for some reason. I just copied the
lib/python2.7/unitest folder from my NDK toolchain over to
/sdcard/com.android.python27/extras/python/. Plus I needed to set the
environment variables in Terminal IDE's ~/.bashrc so I added:

    source /data/data/com.spartacusrex.spartacuside/files/python27.sh

In ~/python27.sh I have:
    export PYTHONHOME=/data/data/com.android.python27/files/python
    export
PYTHONPATH=/sdcard/com.android.python27/extras/python:/data/data/com.android.python27/files/python/lib/python2.7/lib-dynload:/data/data/com.android.python27/files/python/lib/python2.7
    export PATH=$PYTHONHOME/bin:$PATH
    export
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/data/data/com.android.python27/files/python/lib:/data/data/com.android.python27/files/python/lib/python2.7/lib-dynload

I also needed to change the LLVM_SRC_ROOT,  LLVM_OBJ_ROOT and PYTHON
variables in the llvm/Makefile.config to point to my $HOME directory in
Terminal IDE (the terminal emulator I'm running the tests in):

    LLVM_SRC_ROOT   := $(call realpath,
/data/data/com.spartacusrex.spartacuside/files/llvm)
    LLVM_OBJ_ROOT   := $(call realpath,
/data/data/com.spartacusrex.spartacuside/files/build)
    PYTHON     := /data/data/com.android.python27/files/python/bin/python

In addition I needed to change the path to sh in
llvm/autoconf/mkinstalldirs to the correct location in android.

    #! /system/bin/sh

So that got it to run. But I still ran into a bunch of errors like:
shell-init: error retrieving current directory: getcwd: cannot access
parent directories: Permission denied
error: Could not create file: /tmp/******

The full output of make check all is in the file I attached.

I think I can get it to work if I'm able to make it use a different tmp
directory as the /tmp/ directory is nonexistent on Android because every
app is supposed to have it's own tmp directory. Can anyone show me how to
change the tmp directory llvm uses for these tests?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20140917/4f27a25b/attachment.html>
-------------- next part --------------
terminal++ at 192.168.1.229:~/build$ make ENABLE_OPTIMIZED=1 check-all
llvm[0]: Running test suite
make[1]: Entering directory `/data/data/com.spartacusrex.spartacuside/files/build/test'
Making LLVM 'lit.site.cfg' file...
Making LLVM unittest 'lit.site.cfg' file...
make -C /data/data/com.spartacusrex.spartacuside/files/build/test/../tools/clang/test lit.site.cfg Unit/lit.site.cfg
make[2]: Entering directory `/data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test'
Making Clang 'lit.site.cfg' file...
Making Clang 'Unit/lit.site.cfg' file...
make[2]: Leaving directory `/data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test'
( ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -s 8192 ; \
  /data/data/com.android.python27/files/python/bin/python /data/data/com.spartacusrex.spartacuside/files/llvm/utils/lit/lit.py -s -v . /data/data/com.spartacusrex.spartacuside/files/build/test/../tools/clang/test )
WARNING: linker: libpython2.7.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: math.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: strop.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: binascii.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: _hashlib.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: _random.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: time.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: operator.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: _collections.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: itertools.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: _bisect.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: _heapq.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: select.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: fcntl.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: _struct.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: cStringIO.so has text relocations. This is wasting memory and is a security risk. Please fix.
Traceback (most recent call last):
  File "/data/data/com.spartacusrex.spartacuside/files/llvm/utils/lit/lit.py", line 4, in <module>
    import lit
  File "/data/data/com.spartacusrex.spartacuside/files/llvm/utils/lit/lit/__init__.py", line 4, in <module>
    from .main import main
  File "/data/data/com.spartacusrex.spartacuside/files/llvm/utils/lit/lit/main.py", line 13, in <module>
    import lit.LitConfig
  File "/data/data/com.spartacusrex.spartacuside/files/llvm/utils/lit/lit/LitConfig.py", line 7, in <module>
    import lit.formats
  File "/data/data/com.spartacusrex.spartacuside/files/llvm/utils/lit/lit/formats/__init__.py", line 3, in <module>
    from lit.formats.googletest import GoogleTest
  File "/data/data/com.spartacusrex.spartacuside/files/llvm/utils/lit/lit/formats/googletest.py", line 6, in <module>
    import lit.TestRunner
  File "/data/data/com.spartacusrex.spartacuside/files/llvm/utils/lit/lit/TestRunner.py", line 7, in <module>
    import lit.ShUtil as ShUtil
  File "/data/data/com.spartacusrex.spartacuside/files/llvm/utils/lit/lit/ShUtil.py", line 250, in <module>
    import unittest
ImportError: No module named unittest
make[1]: *** [check-local-all] Error 1
make[1]: Leaving directory `/data/data/com.spartacusrex.spartacuside/files/build/test'
make: *** [check-all] Error 2
terminal++ at 192.168.1.229:~/build$ python -m unittest
WARNING: linker: libpython2.7.so has text relocations. This is wasting memory and is a security risk. Please fix.
/data/data/com.android.python27/files/python/bin/python: No module named unittest
terminal++ at 192.168.1.229:~/build$ tar xzf /storage/sdcard0/Download/unittest.tar.gz -C /sdcard/com.android.python27/extras/
python/ tmp/
terminal++ at 192.168.1.229:~/build$ tar xzf /storage/sdcard0/Download/unittest.tar.gz -C /sdcard/com.android.python27/extras/python/
Display all 226 possibilities? (y or n)
terminal++ at 192.168.1.229:~/build$ tar xzf /storage/sdcard0/Download/unittest.tar.gz -C /sdcard/com.android.python27/extras/python/
terminal++ at 192.168.1.229:~/build$ python -m unittest
WARNING: linker: libpython2.7.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: _collections.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: operator.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: itertools.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: _bisect.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: _heapq.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: _functools.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: cStringIO.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: time.so has text relocations. This is wasting memory and is a security risk. Please fix.

----------------------------------------------------------------------
Ran 0 tests in 0.000s

OK
terminal++ at 192.168.1.229:~/build$ make ENABLE_OPTIMIZED=1 check-all
llvm[0]: Running test suite
make[1]: Entering directory `/data/data/com.spartacusrex.spartacuside/files/build/test'
Making LLVM 'lit.site.cfg' file...
Making LLVM unittest 'lit.site.cfg' file...
make -C /data/data/com.spartacusrex.spartacuside/files/build/test/../tools/clang/test lit.site.cfg Unit/lit.site.cfg
make[2]: Entering directory `/data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test'
Making Clang 'lit.site.cfg' file...
Making Clang 'Unit/lit.site.cfg' file...
make[2]: Leaving directory `/data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test'
( ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -s 8192 ; \
  /data/data/com.android.python27/files/python/bin/python /data/data/com.spartacusrex.spartacuside/files/llvm/utils/lit/lit.py -s -v . /data/data/com.spartacusrex.spartacuside/files/build/test/../tools/clang/test )
WARNING: linker: libpython2.7.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: math.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: strop.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: binascii.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: _hashlib.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: _random.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: time.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: operator.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: _collections.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: itertools.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: _bisect.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: _heapq.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: select.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: fcntl.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: _struct.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: cStringIO.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: _functools.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: _multiprocessing.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: cPickle.so has text relocations. This is wasting memory and is a security risk. Please fix.
lit.py: lit.cfg:201: note: using clang: '/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang'
lit.py: lit.cfg:329: note: Did not find clang-interpreter in /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin:/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin
-- Testing: 19215 tests, 4 threads --
WARNING: linker: _ctypes.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: mmap.so has text relocations. This is wasting memory and is a security risk. Please fix.
lit.py: run.py:223: note: failed to initialize multiprocessing
Testing:
FAIL: Clang :: ARCMT/designated-init-in-header/designated-init-in-header.m (23 of 19215)
******************** TEST 'Clang :: ARCMT/designated-init-in-header/designated-init-in-header.m' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -objcmt-migrate-designated-init -objcmt-migrate-readwrite-property -objcmt-migrate-instancetype -x objective-c /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/designated-init-in-header/file1.m.in -triple x86_64-apple-darwin11 -fobjc-arc -migrate -o /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/designated-init-in-header/Output/designated-init-in-header.m.tmp1.remap
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -objcmt-migrate-designated-init -objcmt-migrate-readwrite-property -objcmt-migrate-instancetype -x objective-c /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/designated-init-in-header/file2.m.in -triple x86_64-apple-darwin11 -fobjc-arc -migrate -o /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/designated-init-in-header/Output/designated-init-in-header.m.tmp2.remap
c-arcmt-test /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/designated-init-in-header/Output/designated-init-in-header.m.tmp1.remap /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/designated-init-in-header/Output/designated-init-in-header.m.tmp2.remap | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/designated-init-in-header/header1.h.result /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/designated-init-in-header/file2.m.in.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
Error by clang_getRemappingsFromFileList
Could not create file: /tmp/header1.h-e6d9a1..h
Could not create file: /tmp/file2.m.in-0427ae..in
error: no files to verify from stdin

--

********************
Testing:
FAIL: Clang :: ARCMT/migrate-plist-output.m (27 of 19215)
******************** TEST 'Clang :: ARCMT/migrate-plist-output.m' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -arcmt-migrate -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate-plist-output.m.tmp.dir -arcmt-migrate-report-output /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate-plist-output.m.tmp.plist /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/migrate-plist-output.m
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/migrate-plist-output.m -input-file=/data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate-plist-output.m.tmp.plist
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate-plist-output.m.tmp.dir
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: Could not create file: /tmp/migrate-plist-output.m-72c159..m
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/migrate-space-in-path.m (29 of 19215)
******************** TEST 'Clang :: ARCMT/migrate-space-in-path.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate-space-in-path.m.tmp.migrate
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -arcmt-migrate -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate-space-in-path.m.tmp.migrate /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/"with space"/test1.m.in -x objective-c
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -arcmt-migrate -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate-space-in-path.m.tmp.migrate /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/"with space"/test2.m.in -x objective-c
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate-space-in-path.m.tmp.migrate | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/"with space"/test1.m.in.result /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/"with space"/test2.m.in.result /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/"with space"/test.h.result
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate-space-in-path.m.tmp.migrate
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: Could not create file: /tmp/test1.m.in-0fe8e2..in
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/migrate.m (31 of 19215)
******************** TEST 'Clang :: ARCMT/migrate.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -arcmt-migrate -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/Inputs/test1.m.in -x objective-c
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -arcmt-migrate -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/Inputs/test2.m.in -x objective-c
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate.m.tmp | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/Inputs/test1.m.in.result /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/Inputs/test2.m.in.result /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/Inputs/test.h.result
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate.m.tmp
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: Could not create file: /tmp/test.h-34a3da..h
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/migrate-with-pch.m (33 of 19215)
******************** TEST 'Clang :: ARCMT/migrate-with-pch.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate-with-pch.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -x objective-c /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/Common.h -emit-pch -o /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate-with-pch.m.tmp.pch
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -arcmt-migrate -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate-with-pch.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/Inputs/test1.m.in -x objective-c -include-pch /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate-with-pch.m.tmp.pch
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -arcmt-migrate -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate-with-pch.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/Inputs/test2.m.in -x objective-c -include-pch /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate-with-pch.m.tmp.pch
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate-with-pch.m.tmp | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/Inputs/test1.m.in.result /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/Inputs/test2.m.in.result /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/Inputs/test.h.result
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/migrate-with-pch.m.tmp
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: Could not create file: /tmp/test.h-a8ade3..h
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/objcmt-atomic-property.m (35 of 19215)
******************** TEST 'Clang :: ARCMT/objcmt-atomic-property.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-atomic-property.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -fblocks -objcmt-migrate-readwrite-property -objcmt-migrate-readonly-property -objcmt-atomic-property -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-atomic-property.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-atomic-property.m -x objective-c -fobjc-runtime-has-weak -fobjc-arc -triple x86_64-apple-darwin11
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-atomic-property.m.tmp | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-atomic-property.m.result
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -fblocks -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c -fobjc-runtime-has-weak -fobjc-arc /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-atomic-property.m.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: Could not create file: /tmp/objcmt-atomic-property.m-0aaf66..m
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/objcmt-boxing.m (36 of 19215)
******************** TEST 'Clang :: ARCMT/objcmt-boxing.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-boxing.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -fobjc-arc -objcmt-migrate-literals -objcmt-migrate-subscripting -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-boxing.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-boxing.m -x objective-c++ -verify
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-boxing.m.tmp | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-boxing.m.result
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c++ /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-boxing.m.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: 'error' diagnostics seen but not expected:
  (frontend): Could not create file: /tmp/objcmt-boxing.m-bec17d..m
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/objcmt-arc-cf-annotations.m (38 of 19215)
******************** TEST 'Clang :: ARCMT/objcmt-arc-cf-annotations.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-arc-cf-annotations.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -fblocks -objcmt-migrate-annotation -objcmt-migrate-instancetype -objcmt-migrate-readwrite-property -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-arc-cf-annotations.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-arc-cf-annotations.m -x objective-c -triple x86_64-apple-darwin11
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-arc-cf-annotations.m.tmp | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-arc-cf-annotations.m.result
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -fblocks -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-arc-cf-annotations.m.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: Could not create file: /tmp/objcmt-arc-cf-annotations.m-be02a5..m
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/objcmt-designated-initializer.m (39 of 19215)
******************** TEST 'Clang :: ARCMT/objcmt-designated-initializer.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-designated-initializer.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -objcmt-migrate-designated-init /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-designated-initializer.m -triple x86_64-apple-darwin11 -fobjc-arc -migrate -o /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-designated-initializer.m.tmp.remap
c-arcmt-test /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-designated-initializer.m.tmp.remap | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-designated-initializer.m.result
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -triple x86_64-apple-darwin11 -fsyntax-only -x objective-c -fobjc-arc /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-designated-initializer.m.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
Error by clang_getRemappingsFromFileList
Could not create file: /tmp/objcmt-designated-initializer.m-39e0d6..m
error: no files to verify from stdin

--

********************
Testing:
FAIL: Clang :: ARCMT/objcmt-instancetype-2.m (40 of 19215)
******************** TEST 'Clang :: ARCMT/objcmt-instancetype-2.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-instancetype-2.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -objcmt-migrate-instancetype -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-instancetype-2.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-instancetype-2.m -x objective-c -fobjc-runtime-has-weak -fobjc-arc -triple x86_64-apple-darwin11
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-instancetype-2.m.tmp | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-instancetype-2.m.result
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -triple x86_64-apple-darwin11 -fsyntax-only -x objective-c -fobjc-runtime-has-weak -fobjc-arc /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-instancetype-2.m.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: Could not create file: /tmp/objcmt-instancetype-2.m-c1f71d..m
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/objcmt-instancetype.m (42 of 19215)
******************** TEST 'Clang :: ARCMT/objcmt-instancetype.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-instancetype.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -objcmt-migrate-instancetype -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-instancetype.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-instancetype.m -x objective-c -fobjc-runtime-has-weak -fobjc-arc -triple x86_64-apple-darwin11
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-instancetype.m.tmp | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-instancetype.m.result
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -triple x86_64-apple-darwin11 -fsyntax-only -x objective-c -fobjc-runtime-has-weak -fobjc-arc /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-instancetype.m.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: Could not create file: /tmp/objcmt-instancetype.m-5248f7..m
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/objcmt-migrate-all.m (43 of 19215)
******************** TEST 'Clang :: ARCMT/objcmt-migrate-all.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-migrate-all.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -objcmt-migrate-all -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-migrate-all.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-migrate-all.m -x objective-c -fobjc-runtime-has-weak -fobjc-arc -triple x86_64-apple-darwin11
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-migrate-all.m.tmp | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-migrate-all.m.result
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c -fobjc-runtime-has-weak -fobjc-arc /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-migrate-all.m.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: Could not create file: /tmp/objcmt-migrate-all.m-750514..m
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/objcmt-ns-macros.m (44 of 19215)
******************** TEST 'Clang :: ARCMT/objcmt-ns-macros.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-ns-macros.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -objcmt-migrate-ns-macros -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-ns-macros.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-ns-macros.m -x objective-c -fobjc-runtime-has-weak -fobjc-arc -triple x86_64-apple-darwin11
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-ns-macros.m.tmp | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-ns-macros.m.result
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c -fobjc-runtime-has-weak -fobjc-arc /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-ns-macros.m.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: Could not create file: /tmp/objcmt-ns-macros.m-4adb87..m
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/objcmt-ns-nonatomic-iosonly.m (45 of 19215)
******************** TEST 'Clang :: ARCMT/objcmt-ns-nonatomic-iosonly.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-ns-nonatomic-iosonly.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -fblocks -objcmt-migrate-readwrite-property -objcmt-ns-nonatomic-iosonly -objcmt-migrate-readonly-property -objcmt-atomic-property -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-ns-nonatomic-iosonly.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-ns-nonatomic-iosonly.m -x objective-c -fobjc-runtime-has-weak -fobjc-arc -triple x86_64-apple-darwin11
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-ns-nonatomic-iosonly.m.tmp | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-ns-nonatomic-iosonly.m.result
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -fblocks -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c -fobjc-runtime-has-weak -fobjc-arc /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-ns-nonatomic-iosonly.m.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: Could not create file: /tmp/objcmt-ns-nonatomic-iosonly.m-07034d..m
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/objcmt-ns-returns-inner-pointer.m (46 of 19215)
******************** TEST 'Clang :: ARCMT/objcmt-ns-returns-inner-pointer.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-ns-returns-inner-pointer.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -objcmt-returns-innerpointer-property -objcmt-migrate-annotation -objcmt-migrate-readwrite-property -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-ns-returns-inner-pointer.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-ns-returns-inner-pointer.m -x objective-c -fobjc-runtime-has-weak -fobjc-arc -triple x86_64-apple-darwin11
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-ns-returns-inner-pointer.m.tmp | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-ns-returns-inner-pointer.m.result
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c -fobjc-runtime-has-weak -fobjc-arc /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-ns-returns-inner-pointer.m.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: Could not create file: /tmp/objcmt-ns-returns-inner-pointer.m-888630..m
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/objcmt-property-availability.m (47 of 19215)
******************** TEST 'Clang :: ARCMT/objcmt-property-availability.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-property-availability.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include  -objcmt-migrate-readwrite-property -objcmt-migrate-readonly-property -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-property-availability.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-property-availability.m -x objective-c -fobjc-runtime-has-weak -fobjc-arc -triple x86_64-apple-darwin11
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-property-availability.m.tmp | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-property-availability.m.result
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c -fobjc-runtime-has-weak -fobjc-arc /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-property-availability.m.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: Could not create file: /tmp/objcmt-property-availability.m-8c25e1..m
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/objcmt-property.m (48 of 19215)
******************** TEST 'Clang :: ARCMT/objcmt-property.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-property.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -fblocks -objcmt-migrate-readwrite-property -objcmt-migrate-readonly-property -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-property.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-property.m -x objective-c -fobjc-runtime-has-weak -fobjc-arc -triple x86_64-apple-darwin11
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-property.m.tmp | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-property.m.result
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -fblocks -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c -fobjc-runtime-has-weak -fobjc-arc /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-property.m.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: Could not create file: /tmp/objcmt-property.m-fcbfe8..m
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/objcmt-protocol-conformance.m (49 of 19215)
******************** TEST 'Clang :: ARCMT/objcmt-protocol-conformance.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-protocol-conformance.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -objcmt-migrate-protocol-conformance -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-protocol-conformance.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-protocol-conformance.m -x objective-c -fobjc-runtime-has-weak -fobjc-arc -triple x86_64-apple-darwin11
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-protocol-conformance.m.tmp | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-protocol-conformance.m.result
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c -fobjc-runtime-has-weak -fobjc-arc /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-protocol-conformance.m.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: Could not create file: /tmp/objcmt-protocol-conformance.m-0045c8..m
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/objcmt-subscripting-literals-in-arc.m (50 of 19215)
******************** TEST 'Clang :: ARCMT/objcmt-subscripting-literals-in-arc.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-subscripting-literals-in-arc.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -fobjc-arc -objcmt-migrate-literals -objcmt-migrate-subscripting -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-subscripting-literals-in-arc.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-subscripting-literals-in-arc.m -x objective-c -triple x86_64-apple-darwin11
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-subscripting-literals-in-arc.m.tmp | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-subscripting-literals-in-arc.m.result
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -fobjc-arc -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-subscripting-literals-in-arc.m.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: Could not create file: /tmp/objcmt-subscripting-literals-in-arc.m-7826ae..m
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/objcmt-numeric-literals.m (51 of 19215)
******************** TEST 'Clang :: ARCMT/objcmt-numeric-literals.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-numeric-literals.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -objcmt-migrate-literals -objcmt-migrate-subscripting -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-numeric-literals.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m -x objective-c++
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-numeric-literals.m.tmp | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m.result
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c++ /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:62:3: warning: converting to boxing syntax requires casting 'int' to 'char'
  [NSNumber numberWithChar:2];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:63:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'char'
  [NSNumber numberWithChar:2U];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:64:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'char'
  [NSNumber numberWithChar:2u];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:65:3: warning: converting to boxing syntax requires casting 'long' to 'char'
  [NSNumber numberWithChar:2L];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:66:3: warning: converting to boxing syntax requires casting 'long' to 'char'
  [NSNumber numberWithChar:2l];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:67:3: warning: converting to boxing syntax requires casting 'long long' to 'char'
  [NSNumber numberWithChar:2LL];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:68:3: warning: converting to boxing syntax requires casting 'long long' to 'char'
  [NSNumber numberWithChar:2ll];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:69:3: warning: converting to boxing syntax requires casting 'unsigned long' to 'char'
  [NSNumber numberWithChar:2ul];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:70:3: warning: converting to boxing syntax requires casting 'unsigned long' to 'char'
  [NSNumber numberWithChar:2lu];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:71:3: warning: converting to boxing syntax requires casting 'unsigned long long' to 'char'
  [NSNumber numberWithChar:2ull];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:72:3: warning: converting to boxing syntax requires casting 'unsigned long long' to 'char'
  [NSNumber numberWithChar:2llu];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:73:3: warning: converting to boxing syntax requires casting 'double' to 'char'
  [NSNumber numberWithChar:2.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:74:3: warning: converting to boxing syntax requires casting 'float' to 'char'
  [NSNumber numberWithChar:2.0f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:75:3: warning: converting to boxing syntax requires casting 'float' to 'char'
  [NSNumber numberWithChar:2.0F];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:76:3: warning: converting to boxing syntax requires casting 'long double' to 'char'
  [NSNumber numberWithChar:2.0l];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:77:3: warning: converting to boxing syntax requires casting 'long double' to 'char'
  [NSNumber numberWithChar:2.0L];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:78:3: warning: converting to boxing syntax requires casting 'int' to 'char'
  [NSNumber numberWithChar:0x2f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:79:3: warning: converting to boxing syntax requires casting 'int' to 'char'
  [NSNumber numberWithChar:04];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:80:3: warning: converting to boxing syntax requires casting 'int' to 'char'
  [NSNumber numberWithChar:0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:81:3: warning: converting to boxing syntax requires casting 'double' to 'char'
  [NSNumber numberWithChar:0.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:82:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'char'
  [NSNumber numberWithChar:YES];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:83:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'char'
  [NSNumber numberWithChar:NO];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:84:3: warning: converting to boxing syntax requires casting 'bool' to 'char'
  [NSNumber numberWithChar:true];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:85:3: warning: converting to boxing syntax requires casting 'bool' to 'char'
  [NSNumber numberWithChar:false];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:86:3: warning: converting to boxing syntax requires casting 'int' to 'char'
  [NSNumber numberWithChar:VAL_INT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:87:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'char'
  [NSNumber numberWithChar:VAL_UINT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:90:3: warning: converting to boxing syntax requires casting 'char' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:'a'];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:92:3: warning: converting to boxing syntax requires casting 'int' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:2];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:93:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:2U];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:94:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:2u];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:95:3: warning: converting to boxing syntax requires casting 'long' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:2L];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:96:3: warning: converting to boxing syntax requires casting 'long' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:2l];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:97:3: warning: converting to boxing syntax requires casting 'long long' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:2LL];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:98:3: warning: converting to boxing syntax requires casting 'long long' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:2ll];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:99:3: warning: converting to boxing syntax requires casting 'unsigned long' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:2ul];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:100:3: warning: converting to boxing syntax requires casting 'unsigned long' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:2lu];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:101:3: warning: converting to boxing syntax requires casting 'unsigned long long' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:2ull];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:102:3: warning: converting to boxing syntax requires casting 'unsigned long long' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:2llu];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:103:3: warning: converting to boxing syntax requires casting 'double' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:2.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:104:3: warning: converting to boxing syntax requires casting 'float' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:2.0f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:105:3: warning: converting to boxing syntax requires casting 'float' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:2.0F];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:106:3: warning: converting to boxing syntax requires casting 'long double' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:2.0l];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:107:3: warning: converting to boxing syntax requires casting 'long double' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:2.0L];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:108:3: warning: converting to boxing syntax requires casting 'int' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:0x2f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:109:3: warning: converting to boxing syntax requires casting 'int' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:04];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:110:3: warning: converting to boxing syntax requires casting 'int' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:111:3: warning: converting to boxing syntax requires casting 'double' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:0.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:112:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'unsigned char'
  [NSNumber numberWithUnsignedChar:YES];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:113:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'unsigned char'
  [NSNumber numberWithUnsignedChar:NO];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:114:3: warning: converting to boxing syntax requires casting 'bool' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:true];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:115:3: warning: converting to boxing syntax requires casting 'bool' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:false];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:116:3: warning: converting to boxing syntax requires casting 'int' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:VAL_INT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:117:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:VAL_UINT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:118:3: warning: converting to boxing syntax requires casting 'char' to 'unsigned char'
  [NSNumber numberWithUnsignedChar:VAL_CHAR];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:120:3: warning: converting to boxing syntax requires casting 'char' to 'short'
  [NSNumber numberWithShort:'a'];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:122:3: warning: converting to boxing syntax requires casting 'int' to 'short'
  [NSNumber numberWithShort:2];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:123:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'short'
  [NSNumber numberWithShort:2U];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:124:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'short'
  [NSNumber numberWithShort:2u];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:125:3: warning: converting to boxing syntax requires casting 'long' to 'short'
  [NSNumber numberWithShort:2L];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:126:3: warning: converting to boxing syntax requires casting 'long' to 'short'
  [NSNumber numberWithShort:2l];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:127:3: warning: converting to boxing syntax requires casting 'long long' to 'short'
  [NSNumber numberWithShort:2LL];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:128:3: warning: converting to boxing syntax requires casting 'long long' to 'short'
  [NSNumber numberWithShort:2ll];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:129:3: warning: converting to boxing syntax requires casting 'unsigned long' to 'short'
  [NSNumber numberWithShort:2ul];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:130:3: warning: converting to boxing syntax requires casting 'unsigned long' to 'short'
  [NSNumber numberWithShort:2lu];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:131:3: warning: converting to boxing syntax requires casting 'unsigned long long' to 'short'
  [NSNumber numberWithShort:2ull];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:132:3: warning: converting to boxing syntax requires casting 'unsigned long long' to 'short'
  [NSNumber numberWithShort:2llu];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:133:3: warning: converting to boxing syntax requires casting 'double' to 'short'
  [NSNumber numberWithShort:2.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:134:3: warning: converting to boxing syntax requires casting 'float' to 'short'
  [NSNumber numberWithShort:2.0f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:135:3: warning: converting to boxing syntax requires casting 'float' to 'short'
  [NSNumber numberWithShort:2.0F];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:136:3: warning: converting to boxing syntax requires casting 'long double' to 'short'
  [NSNumber numberWithShort:2.0l];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:137:3: warning: converting to boxing syntax requires casting 'long double' to 'short'
  [NSNumber numberWithShort:2.0L];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:138:3: warning: converting to boxing syntax requires casting 'int' to 'short'
  [NSNumber numberWithShort:0x2f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:139:3: warning: converting to boxing syntax requires casting 'int' to 'short'
  [NSNumber numberWithShort:04];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:140:3: warning: converting to boxing syntax requires casting 'int' to 'short'
  [NSNumber numberWithShort:0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:141:3: warning: converting to boxing syntax requires casting 'double' to 'short'
  [NSNumber numberWithShort:0.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:142:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'short'
  [NSNumber numberWithShort:YES];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:143:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'short'
  [NSNumber numberWithShort:NO];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:144:3: warning: converting to boxing syntax requires casting 'bool' to 'short'
  [NSNumber numberWithShort:true];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:145:3: warning: converting to boxing syntax requires casting 'bool' to 'short'
  [NSNumber numberWithShort:false];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:146:3: warning: converting to boxing syntax requires casting 'int' to 'short'
  [NSNumber numberWithShort:VAL_INT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:147:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'short'
  [NSNumber numberWithShort:VAL_UINT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:149:3: warning: converting to boxing syntax requires casting 'char' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:'a'];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:151:3: warning: converting to boxing syntax requires casting 'int' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:2];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:152:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:2U];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:153:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:2u];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:154:3: warning: converting to boxing syntax requires casting 'long' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:2L];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:155:3: warning: converting to boxing syntax requires casting 'long' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:2l];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:156:3: warning: converting to boxing syntax requires casting 'long long' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:2LL];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:157:3: warning: converting to boxing syntax requires casting 'long long' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:2ll];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:158:3: warning: converting to boxing syntax requires casting 'unsigned long' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:2ul];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:159:3: warning: converting to boxing syntax requires casting 'unsigned long' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:2lu];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:160:3: warning: converting to boxing syntax requires casting 'unsigned long long' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:2ull];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:161:3: warning: converting to boxing syntax requires casting 'unsigned long long' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:2llu];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:162:3: warning: converting to boxing syntax requires casting 'double' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:2.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:163:3: warning: converting to boxing syntax requires casting 'float' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:2.0f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:164:3: warning: converting to boxing syntax requires casting 'float' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:2.0F];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:165:3: warning: converting to boxing syntax requires casting 'long double' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:2.0l];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:166:3: warning: converting to boxing syntax requires casting 'long double' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:2.0L];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:167:3: warning: converting to boxing syntax requires casting 'int' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:0x2f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:168:3: warning: converting to boxing syntax requires casting 'int' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:04];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:169:3: warning: converting to boxing syntax requires casting 'int' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:170:3: warning: converting to boxing syntax requires casting 'double' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:0.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:171:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'unsigned short'
  [NSNumber numberWithUnsignedShort:YES];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:172:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'unsigned short'
  [NSNumber numberWithUnsignedShort:NO];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:173:3: warning: converting to boxing syntax requires casting 'bool' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:true];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:174:3: warning: converting to boxing syntax requires casting 'bool' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:false];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:175:3: warning: converting to boxing syntax requires casting 'int' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:VAL_INT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:176:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'unsigned short'
  [NSNumber numberWithUnsignedShort:VAL_UINT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:178:3: warning: converting to boxing syntax requires casting 'char' to 'int'
  [NSNumber numberWithInt:'a'];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:191:3: warning: converting to boxing syntax requires casting 'double' to 'int'
  [NSNumber numberWithInt:2.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:192:3: warning: converting to boxing syntax requires casting 'float' to 'int'
  [NSNumber numberWithInt:2.0f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:193:3: warning: converting to boxing syntax requires casting 'float' to 'int'
  [NSNumber numberWithInt:2.0F];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:194:3: warning: converting to boxing syntax requires casting 'long double' to 'int'
  [NSNumber numberWithInt:2.0l];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:195:3: warning: converting to boxing syntax requires casting 'long double' to 'int'
  [NSNumber numberWithInt:2.0L];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:199:3: warning: converting to boxing syntax requires casting 'double' to 'int'
  [NSNumber numberWithInt:0.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:200:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'int'
  [NSNumber numberWithInt:YES];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:201:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'int'
  [NSNumber numberWithInt:NO];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:202:3: warning: converting to boxing syntax requires casting 'bool' to 'int'
  [NSNumber numberWithInt:true];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:203:3: warning: converting to boxing syntax requires casting 'bool' to 'int'
  [NSNumber numberWithInt:false];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:205:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'int'
  [NSNumber numberWithInt:VAL_UINT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:213:3: warning: converting to boxing syntax requires casting 'char' to 'unsigned int'
  [NSNumber numberWithUnsignedInt:'a'];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:226:3: warning: converting to boxing syntax requires casting 'double' to 'unsigned int'
  [NSNumber numberWithUnsignedInt:2.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:227:3: warning: converting to boxing syntax requires casting 'float' to 'unsigned int'
  [NSNumber numberWithUnsignedInt:2.0f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:228:3: warning: converting to boxing syntax requires casting 'float' to 'unsigned int'
  [NSNumber numberWithUnsignedInt:2.0F];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:229:3: warning: converting to boxing syntax requires casting 'long double' to 'unsigned int'
  [NSNumber numberWithUnsignedInt:2.0l];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:230:3: warning: converting to boxing syntax requires casting 'long double' to 'unsigned int'
  [NSNumber numberWithUnsignedInt:2.0L];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:234:3: warning: converting to boxing syntax requires casting 'double' to 'unsigned int'
  [NSNumber numberWithUnsignedInt:0.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:235:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'unsigned int'
  [NSNumber numberWithUnsignedInt:YES];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:236:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'unsigned int'
  [NSNumber numberWithUnsignedInt:NO];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:237:3: warning: converting to boxing syntax requires casting 'bool' to 'unsigned int'
  [NSNumber numberWithUnsignedInt:true];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:238:3: warning: converting to boxing syntax requires casting 'bool' to 'unsigned int'
  [NSNumber numberWithUnsignedInt:false];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:239:3: warning: converting to boxing syntax requires casting 'int' to 'unsigned int'
  [NSNumber numberWithUnsignedInt:VAL_INT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:242:3: warning: converting to boxing syntax requires casting 'char' to 'long'
  [NSNumber numberWithLong:'a'];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:255:3: warning: converting to boxing syntax requires casting 'double' to 'long'
  [NSNumber numberWithLong:2.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:256:3: warning: converting to boxing syntax requires casting 'float' to 'long'
  [NSNumber numberWithLong:2.0f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:257:3: warning: converting to boxing syntax requires casting 'float' to 'long'
  [NSNumber numberWithLong:2.0F];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:258:3: warning: converting to boxing syntax requires casting 'long double' to 'long'
  [NSNumber numberWithLong:2.0l];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:259:3: warning: converting to boxing syntax requires casting 'long double' to 'long'
  [NSNumber numberWithLong:2.0L];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:263:3: warning: converting to boxing syntax requires casting 'double' to 'long'
  [NSNumber numberWithLong:0.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:264:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'long'
  [NSNumber numberWithLong:YES];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:265:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'long'
  [NSNumber numberWithLong:NO];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:266:3: warning: converting to boxing syntax requires casting 'bool' to 'long'
  [NSNumber numberWithLong:true];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:267:3: warning: converting to boxing syntax requires casting 'bool' to 'long'
  [NSNumber numberWithLong:false];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:268:3: warning: converting to boxing syntax requires casting 'int' to 'long'
  [NSNumber numberWithLong:VAL_INT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:269:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'long'
  [NSNumber numberWithLong:VAL_UINT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:271:3: warning: converting to boxing syntax requires casting 'char' to 'unsigned long'
  [NSNumber numberWithUnsignedLong:'a'];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:284:3: warning: converting to boxing syntax requires casting 'double' to 'unsigned long'
  [NSNumber numberWithUnsignedLong:2.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:285:3: warning: converting to boxing syntax requires casting 'float' to 'unsigned long'
  [NSNumber numberWithUnsignedLong:2.0f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:286:3: warning: converting to boxing syntax requires casting 'float' to 'unsigned long'
  [NSNumber numberWithUnsignedLong:2.0F];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:287:3: warning: converting to boxing syntax requires casting 'long double' to 'unsigned long'
  [NSNumber numberWithUnsignedLong:2.0l];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:288:3: warning: converting to boxing syntax requires casting 'long double' to 'unsigned long'
  [NSNumber numberWithUnsignedLong:2.0L];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:292:3: warning: converting to boxing syntax requires casting 'double' to 'unsigned long'
  [NSNumber numberWithUnsignedLong:0.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:293:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'unsigned long'
  [NSNumber numberWithUnsignedLong:YES];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:294:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'unsigned long'
  [NSNumber numberWithUnsignedLong:NO];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:295:3: warning: converting to boxing syntax requires casting 'bool' to 'unsigned long'
  [NSNumber numberWithUnsignedLong:true];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:296:3: warning: converting to boxing syntax requires casting 'bool' to 'unsigned long'
  [NSNumber numberWithUnsignedLong:false];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:297:3: warning: converting to boxing syntax requires casting 'int' to 'unsigned long'
  [NSNumber numberWithUnsignedLong:VAL_INT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:298:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'unsigned long'
  [NSNumber numberWithUnsignedLong:VAL_UINT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:300:3: warning: converting to boxing syntax requires casting 'char' to 'long long'
  [NSNumber numberWithLongLong:'a'];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:313:3: warning: converting to boxing syntax requires casting 'double' to 'long long'
  [NSNumber numberWithLongLong:2.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:314:3: warning: converting to boxing syntax requires casting 'float' to 'long long'
  [NSNumber numberWithLongLong:2.0f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:315:3: warning: converting to boxing syntax requires casting 'float' to 'long long'
  [NSNumber numberWithLongLong:2.0F];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:316:3: warning: converting to boxing syntax requires casting 'long double' to 'long long'
  [NSNumber numberWithLongLong:2.0l];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:317:3: warning: converting to boxing syntax requires casting 'long double' to 'long long'
  [NSNumber numberWithLongLong:2.0L];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:321:3: warning: converting to boxing syntax requires casting 'double' to 'long long'
  [NSNumber numberWithLongLong:0.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:322:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'long long'
  [NSNumber numberWithLongLong:YES];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:323:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'long long'
  [NSNumber numberWithLongLong:NO];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:324:3: warning: converting to boxing syntax requires casting 'bool' to 'long long'
  [NSNumber numberWithLongLong:true];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:325:3: warning: converting to boxing syntax requires casting 'bool' to 'long long'
  [NSNumber numberWithLongLong:false];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:326:3: warning: converting to boxing syntax requires casting 'int' to 'long long'
  [NSNumber numberWithLongLong:VAL_INT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:327:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'long long'
  [NSNumber numberWithLongLong:VAL_UINT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:329:3: warning: converting to boxing syntax requires casting 'char' to 'unsigned long long'
  [NSNumber numberWithUnsignedLongLong:'a'];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:342:3: warning: converting to boxing syntax requires casting 'double' to 'unsigned long long'
  [NSNumber numberWithUnsignedLongLong:2.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:343:3: warning: converting to boxing syntax requires casting 'float' to 'unsigned long long'
  [NSNumber numberWithUnsignedLongLong:2.0f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:344:3: warning: converting to boxing syntax requires casting 'float' to 'unsigned long long'
  [NSNumber numberWithUnsignedLongLong:2.0F];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:345:3: warning: converting to boxing syntax requires casting 'long double' to 'unsigned long long'
  [NSNumber numberWithUnsignedLongLong:2.0l];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:346:3: warning: converting to boxing syntax requires casting 'long double' to 'unsigned long long'
  [NSNumber numberWithUnsignedLongLong:2.0L];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:350:3: warning: converting to boxing syntax requires casting 'double' to 'unsigned long long'
  [NSNumber numberWithUnsignedLongLong:0.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:351:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'unsigned long long'
  [NSNumber numberWithUnsignedLongLong:YES];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:352:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'unsigned long long'
  [NSNumber numberWithUnsignedLongLong:NO];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:353:3: warning: converting to boxing syntax requires casting 'bool' to 'unsigned long long'
  [NSNumber numberWithUnsignedLongLong:true];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:354:3: warning: converting to boxing syntax requires casting 'bool' to 'unsigned long long'
  [NSNumber numberWithUnsignedLongLong:false];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:355:3: warning: converting to boxing syntax requires casting 'int' to 'unsigned long long'
  [NSNumber numberWithUnsignedLongLong:VAL_INT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:356:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'unsigned long long'
  [NSNumber numberWithUnsignedLongLong:VAL_UINT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:358:3: warning: converting to boxing syntax requires casting 'char' to 'float'
  [NSNumber numberWithFloat:'a'];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:376:3: warning: converting to boxing syntax requires casting 'int' to 'float'
  [NSNumber numberWithFloat:0x2f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:377:3: warning: converting to boxing syntax requires casting 'int' to 'float'
  [NSNumber numberWithFloat:04];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:380:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'float'
  [NSNumber numberWithFloat:YES];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:381:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'float'
  [NSNumber numberWithFloat:NO];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:382:3: warning: converting to boxing syntax requires casting 'bool' to 'float'
  [NSNumber numberWithFloat:true];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:383:3: warning: converting to boxing syntax requires casting 'bool' to 'float'
  [NSNumber numberWithFloat:false];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:384:3: warning: converting to boxing syntax requires casting 'int' to 'float'
  [NSNumber numberWithFloat:VAL_INT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:385:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'float'
  [NSNumber numberWithFloat:VAL_UINT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:387:3: warning: converting to boxing syntax requires casting 'char' to 'double'
  [NSNumber numberWithDouble:'a'];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:405:3: warning: converting to boxing syntax requires casting 'int' to 'double'
  [NSNumber numberWithDouble:0x2f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:406:3: warning: converting to boxing syntax requires casting 'int' to 'double'
  [NSNumber numberWithDouble:04];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:409:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'double'
  [NSNumber numberWithDouble:YES];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:410:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'double'
  [NSNumber numberWithDouble:NO];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:411:3: warning: converting to boxing syntax requires casting 'bool' to 'double'
  [NSNumber numberWithDouble:true];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:412:3: warning: converting to boxing syntax requires casting 'bool' to 'double'
  [NSNumber numberWithDouble:false];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:413:3: warning: converting to boxing syntax requires casting 'int' to 'double'
  [NSNumber numberWithDouble:VAL_INT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:414:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'double'
  [NSNumber numberWithDouble:VAL_UINT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:416:3: warning: converting to boxing syntax requires casting 'char' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:'a'];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:418:3: warning: converting to boxing syntax requires casting 'int' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:2];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:419:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:2U];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:420:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:2u];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:421:3: warning: converting to boxing syntax requires casting 'long' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:2L];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:422:3: warning: converting to boxing syntax requires casting 'long' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:2l];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:423:3: warning: converting to boxing syntax requires casting 'long long' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:2LL];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:424:3: warning: converting to boxing syntax requires casting 'long long' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:2ll];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:425:3: warning: converting to boxing syntax requires casting 'unsigned long' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:2ul];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:426:3: warning: converting to boxing syntax requires casting 'unsigned long' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:2lu];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:427:3: warning: converting to boxing syntax requires casting 'unsigned long long' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:2ull];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:428:3: warning: converting to boxing syntax requires casting 'unsigned long long' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:2llu];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:429:3: warning: converting to boxing syntax requires casting 'double' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:2.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:430:3: warning: converting to boxing syntax requires casting 'float' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:2.0f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:431:3: warning: converting to boxing syntax requires casting 'float' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:2.0F];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:432:3: warning: converting to boxing syntax requires casting 'long double' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:2.0l];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:433:3: warning: converting to boxing syntax requires casting 'long double' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:2.0L];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:434:3: warning: converting to boxing syntax requires casting 'int' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:0x2f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:435:3: warning: converting to boxing syntax requires casting 'int' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:04];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:436:3: warning: converting to boxing syntax requires casting 'int' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:437:3: warning: converting to boxing syntax requires casting 'double' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:0.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:442:3: warning: converting to boxing syntax requires casting 'int' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:VAL_INT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:443:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'BOOL' (aka 'signed char')
  [NSNumber numberWithBool:VAL_UINT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:445:3: warning: converting to boxing syntax requires casting 'char' to 'NSInteger' (aka 'long')
  [NSNumber numberWithInteger:'a'];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:458:3: warning: converting to boxing syntax requires casting 'double' to 'NSInteger' (aka 'long')
  [NSNumber numberWithInteger:2.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:459:3: warning: converting to boxing syntax requires casting 'float' to 'NSInteger' (aka 'long')
  [NSNumber numberWithInteger:2.0f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:460:3: warning: converting to boxing syntax requires casting 'float' to 'NSInteger' (aka 'long')
  [NSNumber numberWithInteger:2.0F];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:461:3: warning: converting to boxing syntax requires casting 'long double' to 'NSInteger' (aka 'long')
  [NSNumber numberWithInteger:2.0l];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:462:3: warning: converting to boxing syntax requires casting 'long double' to 'NSInteger' (aka 'long')
  [NSNumber numberWithInteger:2.0L];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:466:3: warning: converting to boxing syntax requires casting 'double' to 'NSInteger' (aka 'long')
  [NSNumber numberWithInteger:0.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:467:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'NSInteger' (aka 'long')
  [NSNumber numberWithInteger:YES];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:468:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'NSInteger' (aka 'long')
  [NSNumber numberWithInteger:NO];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:469:3: warning: converting to boxing syntax requires casting 'bool' to 'NSInteger' (aka 'long')
  [NSNumber numberWithInteger:true];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:470:3: warning: converting to boxing syntax requires casting 'bool' to 'NSInteger' (aka 'long')
  [NSNumber numberWithInteger:false];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:472:3: warning: converting to boxing syntax requires casting 'unsigned int' to 'NSInteger' (aka 'long')
  [NSNumber numberWithInteger:VAL_UINT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:474:3: warning: converting to boxing syntax requires casting 'char' to 'NSUInteger' (aka 'unsigned long')
  [NSNumber numberWithUnsignedInteger:'a'];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:487:3: warning: converting to boxing syntax requires casting 'double' to 'NSUInteger' (aka 'unsigned long')
  [NSNumber numberWithUnsignedInteger:2.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:488:3: warning: converting to boxing syntax requires casting 'float' to 'NSUInteger' (aka 'unsigned long')
  [NSNumber numberWithUnsignedInteger:2.0f];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:489:3: warning: converting to boxing syntax requires casting 'float' to 'NSUInteger' (aka 'unsigned long')
  [NSNumber numberWithUnsignedInteger:2.0F];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:490:3: warning: converting to boxing syntax requires casting 'long double' to 'NSUInteger' (aka 'unsigned long')
  [NSNumber numberWithUnsignedInteger:2.0l];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:491:3: warning: converting to boxing syntax requires casting 'long double' to 'NSUInteger' (aka 'unsigned long')
  [NSNumber numberWithUnsignedInteger:2.0L];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:495:3: warning: converting to boxing syntax requires casting 'double' to 'NSUInteger' (aka 'unsigned long')
  [NSNumber numberWithUnsignedInteger:0.0];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:496:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'NSUInteger' (aka 'unsigned long')
  [NSNumber numberWithUnsignedInteger:YES];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:497:3: warning: converting to boxing syntax requires casting 'BOOL' (aka 'signed char') to 'NSUInteger' (aka 'unsigned long')
  [NSNumber numberWithUnsignedInteger:NO];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:498:3: warning: converting to boxing syntax requires casting 'bool' to 'NSUInteger' (aka 'unsigned long')
  [NSNumber numberWithUnsignedInteger:true];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:499:3: warning: converting to boxing syntax requires casting 'bool' to 'NSUInteger' (aka 'unsigned long')
  [NSNumber numberWithUnsignedInteger:false];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-numeric-literals.m:500:3: warning: converting to boxing syntax requires casting 'int' to 'NSUInteger' (aka 'unsigned long')
  [NSNumber numberWithUnsignedInteger:VAL_INT];
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
error: Could not create file: /tmp/objcmt-numeric-literals.m-5ce473..m
249 warnings and 1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/objcmt-subscripting-literals.m (52 of 19215)
******************** TEST 'Clang :: ARCMT/objcmt-subscripting-literals.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-subscripting-literals.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -objcmt-migrate-literals -objcmt-migrate-subscripting -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-subscripting-literals.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-subscripting-literals.m -x objective-c -triple x86_64-apple-darwin11
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-subscripting-literals.m.tmp | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-subscripting-literals.m.result
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-subscripting-literals.m.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: Could not create file: /tmp/objcmt-subscripting-literals.m-f29d50..m
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/objcmt-subscripting-unavailable.m (53 of 19215)
******************** TEST 'Clang :: ARCMT/objcmt-subscripting-unavailable.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-subscripting-unavailable.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -objcmt-migrate-literals -objcmt-migrate-subscripting -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-subscripting-unavailable.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-subscripting-unavailable.m -x objective-c -triple x86_64-apple-darwin11
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-subscripting-unavailable.m.tmp | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-subscripting-unavailable.m.result
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-subscripting-unavailable.m.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: Could not create file: /tmp/objcmt-subscripting-unavailable.m-50deab..m
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/objcmt-with-pch.m (54 of 19215)
******************** TEST 'Clang :: ARCMT/objcmt-with-pch.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-with-pch.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -triple x86_64-apple-darwin10 -x objective-c /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/Common.h -emit-pch -o /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-with-pch.m.tmp.pch
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -triple x86_64-apple-darwin10 -objcmt-migrate-literals -objcmt-migrate-subscripting -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-with-pch.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-with-pch.m -x objective-c -include-pch /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-with-pch.m.tmp.pch
c-arcmt-test -mt-migrate-directory /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-with-pch.m.tmp | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-with-pch.m.result
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/objcmt-with-pch.m.result -include-pch /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/Output/objcmt-with-pch.m.tmp.pch
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: Could not create file: /tmp/objcmt-with-pch.m-2d56cd..m
1 error generated.

--

********************
Testing:
FAIL: Clang :: ARCMT/whitelisted/objcmt-with-whitelist-impl.m (64 of 19215)
******************** TEST 'Clang :: ARCMT/whitelisted/objcmt-with-whitelist-impl.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/whitelisted/Output/objcmt-with-whitelist-impl.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -objcmt-migrate-readwrite-property -objcmt-migrate-instancetype -objcmt-white-list-dir-path=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/whitelisted/Inputs /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/whitelisted/objcmt-with-whitelist-impl.m -triple x86_64-apple-darwin11 -migrate -o /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/whitelisted/Output/objcmt-with-whitelist-impl.m.tmp.remap
c-arcmt-test /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/whitelisted/Output/objcmt-with-whitelist-impl.m.tmp.remap | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/whitelisted/header1.h.result /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/whitelisted/objcmt-with-whitelist-impl.m.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
Error by clang_getRemappingsFromFileList
Could not create file: /tmp/objcmt-with-whitelist-impl.m-29811d..m
Could not create file: /tmp/header1.h-f10725..h
error: no files to verify from stdin

--

********************
Testing:
FAIL: Clang :: ARCMT/whitelisted/objcmt-with-whitelist.m (66 of 19215)
******************** TEST 'Clang :: ARCMT/whitelisted/objcmt-with-whitelist.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/whitelisted/Output/objcmt-with-whitelist.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -objcmt-migrate-readwrite-property -objcmt-migrate-instancetype /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/whitelisted/objcmt-with-whitelist.m -triple x86_64-apple-darwin11 -migrate -o /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/whitelisted/Output/objcmt-with-whitelist.m.tmp.remap
c-arcmt-test /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/whitelisted/Output/objcmt-with-whitelist.m.tmp.remap | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/whitelisted/header1.h.result /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/whitelisted/header2.h.result
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -objcmt-migrate-readwrite-property -objcmt-migrate-instancetype -objcmt-white-list-dir-path=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/whitelisted/Inputs /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/whitelisted/objcmt-with-whitelist.m -triple x86_64-apple-darwin11 -migrate -o /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/whitelisted/Output/objcmt-with-whitelist.m.tmp.remap
c-arcmt-test /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/ARCMT/whitelisted/Output/objcmt-with-whitelist.m.tmp.remap | arcmt-test -verify-transformed-files /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/ARCMT/whitelisted/header1.h.result
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
Error by clang_getRemappingsFromFileList
Could not create file: /tmp/header1.h-00c23f..h
Could not create file: /tmp/header2.h-bc5b47..h
error: no files to verify from stdin

--

********************
Testing: 0 ..
FAIL: Clang :: CodeGen/exprs.c (1596 of 19215)
******************** TEST 'Clang :: CodeGen/exprs.c' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -triple x86_64-unknown-unknown /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c -emit-llvm -o - | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:13:4: warning: expression result unused
 i + a;
 ~ ^ ~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:14:4: warning: expression result unused
 a + i;
 ~ ^ ~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:15:1: warning: control reaches end of non-void function
}
^
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:18:26: warning: if statement has empty body
int test2() { if (test2b); return 0; }
                         ^
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:18:26: note: put the semicolon on a separate line to silence this warning
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:24:1: warning: control reaches end of non-void function
}
^
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:45:8: warning: expression result unused
  if ((0, (int)a) & 2) { return 1; }
       ^
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:100:3: warning: expression result unused
  __func__;
  ^~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:120:3: warning: ignoring return value of function declared with const attribute
  __builtin_sin(0);
  ^~~~~~~~~~~~~ ~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:150:17: warning: declaration of 'struct s14' will not be visible outside of this function
void f14(struct s14 *a) {
                ^
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:163:13: warning: expression result unused
  *f15_v(); *f15_v(), *f15_v(); f15_v() ? *f15_v() : *f15_v();
            ^~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:164:14: warning: expression result unused
  *f15_cv(); *f15_cv(), *f15_cv(); f15_cv() ? *f15_cv() : *f15_cv();
             ^~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:165:14: warning: expression result unused; assign into a variable to force a volatile load
  *f15_vv(); *f15_vv(), *f15_vv(); f15_vv() ? *f15_vv() : *f15_vv();
             ^~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:163:3: warning: expression result unused
  *f15_v(); *f15_v(), *f15_v(); f15_v() ? *f15_v() : *f15_v();
  ^~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:163:23: warning: expression result unused
  *f15_v(); *f15_v(), *f15_v(); f15_v() ? *f15_v() : *f15_v();
                      ^~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:163:43: warning: expression result unused
  *f15_v(); *f15_v(), *f15_v(); f15_v() ? *f15_v() : *f15_v();
                                          ^~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:164:3: warning: expression result unused
  *f15_cv(); *f15_cv(), *f15_cv(); f15_cv() ? *f15_cv() : *f15_cv();
  ^~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:164:25: warning: expression result unused
  *f15_cv(); *f15_cv(), *f15_cv(); f15_cv() ? *f15_cv() : *f15_cv();
                        ^~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:164:47: warning: expression result unused
  *f15_cv(); *f15_cv(), *f15_cv(); f15_cv() ? *f15_cv() : *f15_cv();
                                              ^~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:165:3: warning: expression result unused; assign into a variable to force a volatile load
  *f15_vv(); *f15_vv(), *f15_vv(); f15_vv() ? *f15_vv() : *f15_vv();
  ^~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:165:25: warning: expression result unused; assign into a variable to force a volatile load
  *f15_vv(); *f15_vv(), *f15_vv(); f15_vv() ? *f15_vv() : *f15_vv();
                        ^~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:165:47: warning: expression result unused; assign into a variable to force a volatile load
  *f15_vv(); *f15_vv(), *f15_vv(); f15_vv() ? *f15_vv() : *f15_vv();
                                              ^~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/exprs.c:145:12: error: expected string not found in input
 // CHECK: fsub double -0.0
           ^
<stdin>:361:19: note: scanning from here
define double @f13(double %X) #0 {
                  ^
<stdin>:366:9: note: possible intended match here
 %sub = fsub double 0.000000e+00, %0
        ^
21 warnings generated.

--

********************
Testing: 0 ..
FAIL: Clang :: CodeGen/string-literal-short-wstring.c (1823 of 19215)
******************** TEST 'Clang :: CodeGen/string-literal-short-wstring.c' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -x c++ -triple arm-unknown-linux-androideabi -emit-llvm -fshort-wchar /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal-short-wstring.c -o - | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal-short-wstring.c --check-prefix=CHECK --check-prefix=ITANIUM
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -x c++ -triple i686-pc-win32 -emit-llvm -fshort-wchar /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal-short-wstring.c -o - | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal-short-wstring.c --check-prefix=CHECK --check-prefix=MSABI
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal-short-wstring.c:23:12: warning: multi-character character constant
  char c = 'ab';
           ^
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal-short-wstring.c:30:16: warning: extraneous characters in character constant ignored
  wchar_t wb = L'ab';
               ^
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal-short-wstring.c:23:12: warning: implicit conversion from 'int' to 'char' changes value from 24930 to 98
  char c = 'ab';
       ~   ^~~~
3 warnings generated.
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal-short-wstring.c:7:12: error: expected string not found in input
 // CHECK: private unnamed_addr constant [10 x i8] c"\E1\84\A0\C8\A0\F4\82\80\B0\00", align 1
           ^
<stdin>:1:1: note: scanning from here
; ModuleID = '/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal-short-wstring.c'
^
<stdin>:5:16: note: possible intended match here
@_ZZ4mainE1b = private unnamed_addr constant [10 x i8] c"\84\82\80\00", align 1

--

********************
Testing: 0 ..
FAIL: Clang :: CodeGen/string-literal-unicode-conversion.c (1825 of 19215)
******************** TEST 'Clang :: CodeGen/string-literal-unicode-conversion.c' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -triple i386-unknown-unknown -emit-llvm /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal-unicode-conversion.c -o - | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix=CHECK-C /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal-unicode-conversion.c
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -x c++ -std=c++0x -triple i386-unknown-unknown -emit-llvm /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal-unicode-conversion.c -o - | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix=CHECK-CPP0X /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal-unicode-conversion.c
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -x c++ -std=c++0x -fshort-wchar -triple i386-unknown-unknown -emit-llvm /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal-unicode-conversion.c -o - | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix=CHECK-SHORTWCHAR /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal-unicode-conversion.c
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal-unicode-conversion.c:22:21: warning: illegal character encoding in string literal
  char const *aa = "<C0><E9><EE><F5><FC>";
                    ^~~~~~~~~~~~~~~~~~~~
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal-unicode-conversion.c:20:14: error: expected string not found in input
 // CHECK-C: private unnamed_addr constant [6 x i8] c"\C0\E9\EE\F5\FC\00", align 1
             ^
<stdin>:1:1: note: scanning from here
; ModuleID = '/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal-unicode-conversion.c'
^
1 warning generated.
<stdin>:5:9: note: possible intended match here
@.str = private unnamed_addr constant [6 x i8] c"\00", align 1

--

********************
Testing: 0 ..
FAIL: Clang :: CodeGen/string-literal.c (1827 of 19215)
******************** TEST 'Clang :: CodeGen/string-literal.c' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -triple i386-unknown-unknown -emit-llvm /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal.c -o - | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix=CHECK-C /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal.c
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -x c++ -triple i386-unknown-unknown -emit-llvm /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal.c -o - | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix=CHECK-C /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal.c
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -x c++ -std=c++11 -triple i386-unknown-unknown -emit-llvm /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal.c -o - | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix=CHECK-CXX11 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal.c
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -x c -std=c11 -triple i386-unknown-unknown -emit-llvm /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal.c -o - | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix=CHECK-C11 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal.c
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGen/string-literal.c:21:14: error: expected string not found in input
 // CHECK-C: private unnamed_addr constant [10 x i8] c"\E1\84\A0\C8\A0\F4\82\80\B0\00", align 1
             ^
<stdin>:6:1: note: scanning from here
@main.b = private unnamed_addr constant [10 x i8] c"\84\82\80\00", align 1
<stdin>:6:11: note: possible intended match here
@main.b = private unnamed_addr constant [10 x i8] c"\84\82\80\00", align 1

--

********************
Testing: 0 .. 10
FAIL: Clang :: CodeGenCXX/microsoft-uuidof.cpp (2370 of 19215)
******************** TEST 'Clang :: CodeGenCXX/microsoft-uuidof.cpp' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -emit-llvm /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGenCXX/microsoft-uuidof.cpp -o - -DDEFINE_GUID -triple=i386-pc-linux -fms-extensions | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGenCXX/microsoft-uuidof.cpp --check-prefix=CHECK-DEFINE-GUID
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -emit-llvm /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGenCXX/microsoft-uuidof.cpp -o - -triple=i386-pc-linux -fms-extensions | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGenCXX/microsoft-uuidof.cpp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -emit-llvm /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGenCXX/microsoft-uuidof.cpp -o - -DDEFINE_GUID -DWRONG_GUID -triple=i386-pc-linux -fms-extensions | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGenCXX/microsoft-uuidof.cpp --check-prefix=CHECK-DEFINE-WRONG-GUID
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGenCXX/microsoft-uuidof.cpp:36:11: error: expected string not found in input
// CHECK: @_GUID_12345678_1234_1234_1234_1234567890ab = linkonce_odr constant { i32, i16, i16, [8 x i8] } { i32 305419896, i16 4660, i16 4660, [8 x i8] c"\124\124Vx\90\AB" }
          ^
<stdin>:1:1: note: scanning from here
; ModuleID = '/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/CodeGenCXX/microsoft-uuidof.cpp'
^
<stdin>:9:1: note: possible intended match here
@_GUID_12345678_1234_1234_1234_1234567890ab = linkonce_odr constant { i32, i16, i16, [8 x i8] } { i32 305419896, i16 4660, i16 4660, [8 x i8] c"\124\124Vx\90" }

--

********************
Testing: 0 .. 10
FAIL: Clang :: Driver/crash-report.c (3027 of 19215)
******************** TEST 'Clang :: Driver/crash-report.c' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Driver/Output/crash-report.c.tmp
mkdir /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Driver/Output/crash-report.c.tmp
not env TMPDIR=/data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Driver/Output/crash-report.c.tmp TEMP=/data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Driver/Output/crash-report.c.tmp TMP=/data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Driver/Output/crash-report.c.tmp RC_DEBUG_OPTIONS=1  /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang  -fsyntax-only /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/crash-report.c   -F/tmp/ -I /tmp/ -idirafter /tmp/ -iquote /tmp/ -isystem /tmp/   -iprefix /the/prefix -iwithprefix /tmp -iwithprefixbefore /tmp/   -Xclang -internal-isystem -Xclang /tmp/                           -Xclang -internal-externc-isystem -Xclang /tmp/                   -DFOO=BAR 2>&1 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/crash-report.c
cat /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Driver/Output/crash-report.c.tmp/crash-report-*.c | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck --check-prefix=CHECKSRC /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/crash-report.c
cat /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Driver/Output/crash-report.c.tmp/crash-report-*.sh | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck --check-prefix=CHECKSH /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/crash-report.c
not env FORCE_CLANG_DIAGNOSTICS_CRASH=1  /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang  -fsyntax-only -x c /dev/null -lstdc++ 2>&1 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/crash-report.c
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/crash-report.c:22:11: error: expected string not found in input
// CHECK: Preprocessed source(s) and associated run script(s) are located at:
          ^
<stdin>:1:1: note: scanning from here
clang: warning: -Z-reserved-lib-stdc++: 'linker' input unused
^
<stdin>:6:115: note: possible intended match here
clang: note: diagnostic msg: PLEASE submit a bug report to http://llvm.org/bugs/ and include the crash backtrace, preprocessed source, and associated run script.
                                                                                                                  ^

--

********************
Testing: 0 .. 10.
FAIL: Clang :: Driver/inhibit-downstream-commands.c (3082 of 19215)
******************** TEST 'Clang :: Driver/inhibit-downstream-commands.c' FAILED ********************
Script:
--
not  /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang  -no-integrated-as /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/inhibit-downstream-commands.c 2>&1 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/inhibit-downstream-commands.c
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/inhibit-downstream-commands.c:2:11: error: expected string not found in input
// CHECK: error: unknown type name 'invalid'
          ^
<stdin>:1:1: note: scanning from here
error: unable to open output file '/tmp/inhibit-downstream-commands-c68c6f.s': 'No such file or directory'
^

--

********************
Testing: 0 .. 10.
FAIL: Clang :: Driver/modules.m (3112 of 19215)
******************** TEST 'Clang :: Driver/modules.m' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang  -fmodules -fno-modules -### /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m 2>&1 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix=CHECK-NO-MODULES /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang  -fmodules -fno-modules -fmodules -### /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m 2>&1 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix=CHECK-HAS-MODULES /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang  -fbuild-session-file=doesntexist -### /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m 2>&1 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix=NOFILE /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m
touch -m -a -t 201008011501 /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Driver/Output/modules.m.tmp.build-session-file
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang  -fbuild-session-file=/data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Driver/Output/modules.m.tmp.build-session-file -### /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m 2>&1 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix=TIMESTAMP_ONLY /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang  -fbuild-session-timestamp=1280703457 -### /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m 2>&1 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix=TIMESTAMP_ONLY /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang  -fbuild-session-file=/data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Driver/Output/modules.m.tmp.build-session-file -fbuild-session-timestamp=123 -### /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m 2>&1 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix=CONFLICT /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang  -fbuild-session-timestamp=123 -fmodules-validate-once-per-build-session -### /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m 2>&1 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix=MODULES_VALIDATE_ONCE /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang  -fbuild-session-file=/data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Driver/Output/modules.m.tmp.build-session-file -fmodules-validate-once-per-build-session -### /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m 2>&1 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix=MODULES_VALIDATE_ONCE_FILE /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang  -fmodules-validate-once-per-build-session -### /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m 2>&1 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix=MODULES_VALIDATE_ONCE_ERR /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang  -### /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m 2>&1 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix=MODULES_VALIDATE_SYSTEM_HEADERS_DEFAULT /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang  -fmodules-validate-system-headers -### /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m 2>&1 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix=MODULES_VALIDATE_SYSTEM_HEADERS /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/modules.m
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
touch: invalid option -- 't'
BusyBox v1.19.2 (2011-12-12 13:59:36 GMT) multi-call binary.

Usage: touch [-c] FILE [FILE]...

Update the last-modified date on the given FILE[s]

        -c      Don't create files


--

********************
Testing: 0 .. 10.
FAIL: Clang :: Driver/nostdincxx.cpp (3131 of 19215)
******************** TEST 'Clang :: Driver/nostdincxx.cpp' FAILED ********************
Script:
--
not  /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang --driver-mode=g++  -nostdinc++ /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/nostdincxx.cpp 2>&1 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/nostdincxx.cpp
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Driver/nostdincxx.cpp:2:11: error: expected string not found in input
// CHECK: file not found
          ^
<stdin>:1:1: note: scanning from here
error: unable to open output file '/tmp/nostdincxx-df68b4.o': 'No such file or directory'
^
<stdin>:1:30: note: possible intended match here
error: unable to open output file '/tmp/nostdincxx-df68b4.o': 'No such file or directory'
                             ^

--

********************
Testing: 0 .. 10.
FAIL: Clang :: FixIt/fixit-recompile.c (3220 of 19215)
******************** TEST 'Clang :: FixIt/fixit-recompile.c' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -Werror -pedantic /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/FixIt/fixit-recompile.c -fixit-recompile -fixit-to-temporary -E -o - | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/FixIt/fixit-recompile.c
not /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -Werror -pedantic /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/FixIt/fixit-recompile.c -fixit-recompile -fixit-to-temporary -fix-only-warnings
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/FixIt/fixit-recompile.c:4:1: error: plain '_Complex' requires a type specifier; assuming '_Complex double'
_Complex cd;
^
         double
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/FixIt/fixit-recompile.c:4:1: note: FIX-IT applied suggested code changes
error: unable to open output file '/tmp/fixit-recompile.c-5435a1..c': 'No such file or directory'
note: FIX-IT detected an error it cannot fix
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/FixIt/fixit-recompile.c:6:11: error: expected string not found in input
// CHECK: _Complex double cd;
          ^
<stdin>:1:1: note: scanning from here
# 1 "/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/FixIt/fixit-recompile.c"
^
<stdin>:11:1: note: possible intended match here
_Complex cd;
^

--

********************
Testing: 0 .. 10.
FAIL: Clang :: FixIt/fixit-unicode.c (3230 of 19215)
******************** TEST 'Clang :: FixIt/fixit-unicode.c' FAILED ********************
Script:
--
not /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -fsyntax-only /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/FixIt/fixit-unicode.c 2>&1 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -strict-whitespace /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/FixIt/fixit-unicode.c
not /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -fsyntax-only -fdiagnostics-parseable-fixits /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/FixIt/fixit-unicode.c 2>&1 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix=CHECK-MACHINE /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/FixIt/fixit-unicode.c
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/FixIt/fixit-unicode.c:47:19: error: expected string not found in input
// CHECK-MACHINE: fix-it:"{{.*}}":{[[@LINE-3]]:11-[[@LINE-3]]:17}:"\340\270\201ssss"
                  ^
<stdin>:15:1: note: scanning from here
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/FixIt/fixit-unicode.c:44:11: error: use of undeclared identifier 'sss'; did you mean 'ssss'?
<stdin>:15:1: note: with expression "@LINE-3" equal to "44"
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/FixIt/fixit-unicode.c:44:11: error: use of undeclared identifier 'sss'; did you mean 'ssss'?
<stdin>:15:1: note: with expression "@LINE-3" equal to "44"
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/FixIt/fixit-unicode.c:44:11: error: use of undeclared identifier 'sss'; did you mean 'ssss'?
<stdin>:19:84: note: possible intended match here
fix-it:"/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/FixIt/fixit-unicode.c":{44:11-44:17}:"\201ssss"

--

********************
Testing: 0 .. 10..
FAIL: Clang :: Index/pragma-diag-reparse.c (3524 of 19215)
******************** TEST 'Clang :: Index/pragma-diag-reparse.c' FAILED ********************
Script:
--
env CINDEXTEST_EDITING=1 CINDEXTEST_FAILONERROR=1 /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -test-load-source-reparse 5 local  -I/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/Inputs    /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/pragma-diag-reparse.c -Wall -Werror | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/pragma-diag-reparse.c
--
Exit Code: 2

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: unable to open output file '/tmp/preamble-e5b3d2.pch': 'No such file or directory'
FileCheck error: '-' is empty.

--

********************
Testing: 0 .. 10..
FAIL: Clang :: Index/preamble-reparse-cmd-define.c (3528 of 19215)
******************** TEST 'Clang :: Index/preamble-reparse-cmd-define.c' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -write-pch /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/preamble-reparse-cmd-define.c.tmp.h.pch /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/preamble-reparse-cmd-define.c.h
env CINDEXTEST_EDITING=1 CINDEXTEST_REMAP_AFTER_TRIAL=1 /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -test-load-source-reparse 3 local            "-remap-file=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/preamble-reparse-cmd-define.c,/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/preamble-reparse-cmd-define.c.remap" /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/preamble-reparse-cmd-define.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/preamble-reparse-cmd-define.c.tmp.h -D CMD_MACRO=1 2>&1 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/preamble-reparse-cmd-define.c
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
<stdin>:1:1: error: CHECK-NOT: string occurred!
error: unable to open output file '/tmp/preamble-75dc2c.pch': 'No such file or directory'
^
/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/preamble-reparse-cmd-define.c:5:15: note: CHECK-NOT: pattern specified here
// CHECK-NOT: error:
              ^

--

********************
Testing: 0 .. 10..
FAIL: Clang :: Index/preamble-reparse-import.m (3529 of 19215)
******************** TEST 'Clang :: Index/preamble-reparse-import.m' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -write-pch /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/preamble-reparse-import.m.tmp.h.pch -x objective-c /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/preamble-reparse-import.m-2.h
env CINDEXTEST_EDITING=1 CINDEXTEST_FAILONERROR=1    /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -test-load-source-reparse 3 local /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/preamble-reparse-import.m -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/preamble-reparse-import.m.tmp.h
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -write-pch /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/preamble-reparse-import.m.tmp.h.pch -x objective-c /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/preamble-reparse-import.m-3.h
env CINDEXTEST_EDITING=1 CINDEXTEST_FAILONERROR=1    /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -test-load-source-reparse 3 local /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/preamble-reparse-import.m -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/preamble-reparse-import.m.tmp.h
--
Exit Code: 255

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: unable to open output file '/tmp/preamble-3fc8fc.pch': 'No such file or directory'

--

********************
Testing: 0 .. 10..
FAIL: Clang :: Index/targeted-annotation.c (3564 of 19215)
******************** TEST 'Clang :: Index/targeted-annotation.c' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -write-pch /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-annotation.c.tmp.h.pch /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-top.h
env CINDEXTEST_FAILONERROR=1 /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -test-annotate-tokens=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-annotation.c:1:1:7:1 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-annotation.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-annotation.c.tmp.h     -Xclang -error-on-deserialized-decl=NestedVar1      -Xclang -error-on-deserialized-decl=TopVar    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-annotation.c -check-prefix=LOCAL
env CINDEXTEST_FAILONERROR=1 CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_NO_CACHING=1    /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -test-annotate-tokens=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-annotation.c:1:1:7:1 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-annotation.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-annotation.c.tmp.h     -Xclang -error-on-deserialized-decl=PreambleVar      -Xclang -error-on-deserialized-decl=NestedVar1      -Xclang -error-on-deserialized-decl=TopVar    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-annotation.c -check-prefix=LOCAL
env CINDEXTEST_FAILONERROR=1 /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -test-annotate-tokens=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-fields.h:1:1:4:1 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-annotation.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-annotation.c.tmp.h     -Xclang -error-on-deserialized-decl=NestedVar1      -Xclang -error-on-deserialized-decl=TopVar    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-annotation.c -check-prefix=FIELD
env CINDEXTEST_FAILONERROR=1 CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_NO_CACHING=1    /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -test-annotate-tokens=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-fields.h:1:1:4:1 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-annotation.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-annotation.c.tmp.h     -Xclang -error-on-deserialized-decl=PreambleVar      -Xclang -error-on-deserialized-decl=NestedVar1      -Xclang -error-on-deserialized-decl=TopVar    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-annotation.c -check-prefix=FIELD
env CINDEXTEST_FAILONERROR=1 /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -test-annotate-tokens=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-nested1.h:1:1:3:1 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-annotation.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-annotation.c.tmp.h     -Xclang -error-on-deserialized-decl=TopVar    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-annotation.c -check-prefix=NESTED
env CINDEXTEST_FAILONERROR=1 CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_NO_CACHING=1    /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -test-annotate-tokens=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-nested1.h:1:1:3:1 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-annotation.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-annotation.c.tmp.h     -Xclang -error-on-deserialized-decl=PreambleVar      -Xclang -error-on-deserialized-decl=TopVar    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-annotation.c -check-prefix=NESTED
env CINDEXTEST_FAILONERROR=1 /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -test-annotate-tokens=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-top.h:1:1:12:1 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-annotation.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-annotation.c.tmp.h     -Xclang -error-on-deserialized-decl=NestedVar1      -Xclang -error-on-deserialized-decl=vector_get_x    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-annotation.c -check-prefix=TOP
env CINDEXTEST_FAILONERROR=1 CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_NO_CACHING=1    /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -test-annotate-tokens=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-top.h:1:1:12:1 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-annotation.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-annotation.c.tmp.h     -Xclang -error-on-deserialized-decl=PreambleVar      -Xclang -error-on-deserialized-decl=NestedVar1      -Xclang -error-on-deserialized-decl=vector_get_x    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-annotation.c -check-prefix=TOP
--
Exit Code: 2

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: unable to open output file '/tmp/preamble-b7d033.pch': 'No such file or directory'
error: unable to open output file '/tmp/preamble-b7d033.pch': 'No such file or directory'
FileCheck error: '-' is empty.

--

********************
Testing: 0 .. 10..
FAIL: Clang :: Index/targeted-file-refs.c (3566 of 19215)
******************** TEST 'Clang :: Index/targeted-file-refs.c' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -write-pch /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-file-refs.c.tmp.h.pch /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-top.h -Xclang -detailed-preprocessing-record
env CINDEXTEST_FAILONERROR=1 /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -file-refs-at=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-file-refs.c:5:17 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-file-refs.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-file-refs.c.tmp.h     -Xclang -error-on-deserialized-decl=NestedVar1      -Xclang -error-on-deserialized-decl=TopVar    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-file-refs.c -check-prefix=LOCAL
env CINDEXTEST_FAILONERROR=1 CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_NO_CACHING=1    /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -file-refs-at=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-file-refs.c:5:17 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-file-refs.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-file-refs.c.tmp.h     -Xclang -error-on-deserialized-decl=PreambleVar      -Xclang -error-on-deserialized-decl=NestedVar1      -Xclang -error-on-deserialized-decl=TopVar    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-file-refs.c -check-prefix=LOCAL
env CINDEXTEST_FAILONERROR=1 /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -file-refs-at=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-top.h:14:7 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-file-refs.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-file-refs.c.tmp.h     -Xclang -error-on-deserialized-decl=NestedVar1    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-file-refs.c -check-prefix=TOP
env CINDEXTEST_FAILONERROR=1 CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_NO_CACHING=1    /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -file-refs-at=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-top.h:14:7 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-file-refs.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-file-refs.c.tmp.h     -Xclang -error-on-deserialized-decl=PreambleVar      -Xclang -error-on-deserialized-decl=NestedVar1    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-file-refs.c -check-prefix=TOP
env CINDEXTEST_FAILONERROR=1 /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -file-refs-at=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-nested1.h:2:16 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-file-refs.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-file-refs.c.tmp.h     -Xclang -error-on-deserialized-decl=TopVar    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-file-refs.c -check-prefix=NESTED
env CINDEXTEST_FAILONERROR=1 CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_NO_CACHING=1    /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -file-refs-at=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-nested1.h:2:16 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-file-refs.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-file-refs.c.tmp.h     -Xclang -error-on-deserialized-decl=PreambleVar      -Xclang -error-on-deserialized-decl=TopVar    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-file-refs.c -check-prefix=NESTED
env CINDEXTEST_FAILONERROR=1 CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_NO_CACHING=1    /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -file-refs-at=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-preamble.h:2:15 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-file-refs.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-file-refs.c.tmp.h     -Xclang -error-on-deserialized-decl=NestedVar1      -Xclang -error-on-deserialized-decl=TopVar    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-file-refs.c -check-prefix=PREAMBLE
--
Exit Code: 2

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: unable to open output file '/tmp/preamble-e22ed8.pch': 'No such file or directory'
FileCheck error: '-' is empty.

--

********************
Testing: 0 .. 10..
FAIL: Clang :: Index/targeted-cursor.c (3568 of 19215)
******************** TEST 'Clang :: Index/targeted-cursor.c' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -write-pch /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-cursor.c.tmp.h.pch /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-top.h
env CINDEXTEST_FAILONERROR=1 /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -cursor-at=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c:5:10 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-cursor.c.tmp.h     -Xclang -error-on-deserialized-decl=NestedVar1      -Xclang -error-on-deserialized-decl=TopVar    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c -check-prefix=LOCAL-CURSOR1
env CINDEXTEST_FAILONERROR=1 /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -cursor-at=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-top.h:11:15 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-cursor.c.tmp.h     -Xclang -error-on-deserialized-decl=NestedVar1      -Xclang -error-on-deserialized-decl=vector_get_x    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c -check-prefix=TOP-CURSOR1
env CINDEXTEST_FAILONERROR=1 /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -cursor-at=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-nested1.h:2:16 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-cursor.c.tmp.h     -Xclang -error-on-deserialized-decl=TopVar    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c -check-prefix=NESTED-CURSOR1
env CINDEXTEST_FAILONERROR=1 /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -cursor-at=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-fields.h:2:7 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-cursor.c.tmp.h     -Xclang -error-on-deserialized-decl=NestedVar1      -Xclang -error-on-deserialized-decl=TopVar    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c -check-prefix=FIELD-CURSOR1
env CINDEXTEST_FAILONERROR=1 /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -cursor-at=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-fields.h:1:1 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-cursor.c.tmp.h     -Xclang -error-on-deserialized-decl=NestedVar1      -Xclang -error-on-deserialized-decl=TopVar    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c -check-prefix=FIELD-CURSOR2
env CINDEXTEST_FAILONERROR=1 CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_NO_CACHING=1    /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -cursor-at=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c:5:10 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-cursor.c.tmp.h     -Xclang -error-on-deserialized-decl=PreambleVar      -Xclang -error-on-deserialized-decl=NestedVar1      -Xclang -error-on-deserialized-decl=TopVar    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c -check-prefix=LOCAL-CURSOR1
env CINDEXTEST_FAILONERROR=1 CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_NO_CACHING=1    /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -cursor-at=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-top.h:11:15 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-cursor.c.tmp.h     -Xclang -error-on-deserialized-decl=PreambleVar      -Xclang -error-on-deserialized-decl=NestedVar1      -Xclang -error-on-deserialized-decl=vector_get_x    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c -check-prefix=TOP-CURSOR1
env CINDEXTEST_FAILONERROR=1 CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_NO_CACHING=1    /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -cursor-at=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-nested1.h:2:16 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-cursor.c.tmp.h     -Xclang -error-on-deserialized-decl=PreambleVar      -Xclang -error-on-deserialized-decl=TopVar    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c -check-prefix=NESTED-CURSOR1
env CINDEXTEST_FAILONERROR=1 CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_NO_CACHING=1    /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/c-index-test -cursor-at=/data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-preamble.h:2:15 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c -include /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Index/Output/targeted-cursor.c.tmp.h     -Xclang -error-on-deserialized-decl=NestedVar1      -Xclang -error-on-deserialized-decl=TopVar    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Index/targeted-cursor.c -check-prefix=PREAMBLE-CURSOR1
--
Exit Code: 2

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: unable to open output file '/tmp/preamble-b9149c.pch': 'No such file or directory'
FileCheck error: '-' is empty.

--

********************
Testing: 0 .. 10..
FAIL: Clang :: Modules/prune.m (3836 of 19215)
******************** TEST 'Clang :: Modules/prune.m' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -DIMPORT_DEPENDS_ON_MODULE -fmodules-ignore-macro=DIMPORT_DEPENDS_ON_MODULE -fmodules -F /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Modules/Inputs -fmodules-cache-path=/data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Modules/prune.m -verify
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -DIMPORT_DEPENDS_ON_MODULE -fmodules-ignore-macro=DIMPORT_DEPENDS_ON_MODULE -fmodules -F /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Modules/Inputs -fmodules-cache-path=/data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Modules/prune.m -verify
ls /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp | grep modules.timestamp
ls -R /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp | grep ^Module.*pcm
ls -R /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp | grep DependsOnModule.*pcm
touch -m -a -t 201101010000 /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp/modules.timestamp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -fmodules -F /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Modules/Inputs -fmodules-cache-path=/data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp -fmodules -fmodules-prune-interval=172800 -fmodules-prune-after=345600 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Modules/prune.m -verify
ls /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp | grep modules.timestamp
ls -R /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp | grep ^Module.*pcm
ls -R /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp | grep DependsOnModule.*pcm
find /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp -name DependsOnModule*.pcm | xargs touch -a -t 201101010000
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -fmodules -F /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Modules/Inputs -fmodules-cache-path=/data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp -fmodules -fmodules-prune-interval=172800 -fmodules-prune-after=345600 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Modules/prune.m -verify
ls /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp | grep modules.timestamp
ls -R /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp | grep ^Module.*pcm
ls -R /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp | grep DependsOnModule.*pcm
touch -m -a -t 201101010000 /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp/modules.timestamp
find /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp -name DependsOnModule*.pcm | xargs touch -a -t 201101010000
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -fmodules -F /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Modules/Inputs -fmodules-cache-path=/data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp -fmodules -fmodules-prune-interval=172800 -fmodules-prune-after=345600 /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Modules/prune.m -verify
ls /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp | grep modules.timestamp
ls -R /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp | grep ^Module.*pcm
ls -R /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Modules/Output/prune.m.tmp | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/not grep DependsOnModule.*pcm
--
Exit Code: 1

Command Output (stdout):
--
modules.timestamp
Module-1G0WA13.pcm
DependsOnModule-SI8ZDJ.pcm

--
Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
touch: invalid option -- 't'
BusyBox v1.19.2 (2011-12-12 13:59:36 GMT) multi-call binary.

Usage: touch [-c] FILE [FILE]...

Update the last-modified date on the given FILE[s]

        -c      Don't create files


--

********************
Testing: 0 .. 10.. 20
FAIL: Clang :: Rewriter/no-integrated-preprocessing-64bit.m (4540 of 19215)
******************** TEST 'Clang :: Rewriter/no-integrated-preprocessing-64bit.m' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang  -target x86_64-unknown-unknown -fms-extensions -rewrite-objc /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Rewriter/no-integrated-preprocessing-64bit.m -o - | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Rewriter/no-integrated-preprocessing-64bit.m
--
Exit Code: 2

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: unable to open output file '/tmp/no-integrated-preprocessing-64bit-de0795.mi': 'No such file or directory'
1 error generated.
FileCheck error: '-' is empty.

--

********************
Testing: 0 .. 10.. 20
FAIL: Clang :: Rewriter/no-integrated-preprocessing.m (4542 of 19215)
******************** TEST 'Clang :: Rewriter/no-integrated-preprocessing.m' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang  -target i386-unknown-unknown -fms-extensions -rewrite-objc /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Rewriter/no-integrated-preprocessing.m -o /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Rewriter/Output/no-integrated-preprocessing.m.tmp-rw.cpp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Rewriter/no-integrated-preprocessing.m < /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Rewriter/Output/no-integrated-preprocessing.m.tmp-rw.cpp
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: unable to open output file '/tmp/no-integrated-preprocessing-14ba47.mi': 'No such file or directory'
1 error generated.

--

********************
Testing: 0 .. 10.. 20
FAIL: Clang :: Rewriter/rewrite-line-directive.m (4607 of 19215)
******************** TEST 'Clang :: Rewriter/rewrite-line-directive.m' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang -cc1 -internal-isystem /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/../lib/clang/3.6.0/include -E /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Rewriter/rewrite-line-directive.m -o /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Rewriter/Output/rewrite-line-directive.m.tmp.mm
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang  -fms-extensions -rewrite-objc /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Rewriter/Output/rewrite-line-directive.m.tmp.mm -o /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Rewriter/Output/rewrite-line-directive.m.tmp-rw.cpp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix CHECK-LP --input-file=/data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Rewriter/Output/rewrite-line-directive.m.tmp-rw.cpp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Rewriter/rewrite-line-directive.m
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/clang  -g -fms-extensions -rewrite-objc /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Rewriter/Output/rewrite-line-directive.m.tmp.mm -o /data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Rewriter/Output/rewrite-line-directive.m.tmp-rw.cpp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck -check-prefix CHECK-LPG --input-file=/data/data/com.spartacusrex.spartacuside/files/build/tools/clang/test/Rewriter/Output/rewrite-line-directive.m.tmp-rw.cpp /data/data/com.spartacusrex.spartacuside/files/llvm/tools/clang/test/Rewriter/rewrite-line-directive.m
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
error: unable to open output file '/tmp/rewrite-line-directive-67b82c.mii': 'No such file or directory'
1 error generated.

--

********************
Testing: 0 .. 10.. 20.. 30..
FAIL: LLVM :: Assembler/2004-02-01-NegativeZero.ll (7971 of 19215)
******************** TEST 'LLVM :: Assembler/2004-02-01-NegativeZero.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-as < /data/data/com.spartacusrex.spartacuside/files/llvm/test/Assembler/2004-02-01-NegativeZero.ll | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-dis | grep -- -0.0
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/verify-uselistorder /data/data/com.spartacusrex.spartacuside/files/llvm/test/Assembler/2004-02-01-NegativeZero.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied

--

********************
Testing: 0 .. 10.. 20.. 30.. 40
FAIL: LLVM :: BugPoint/compile-custom.ll (8177 of 19215)
******************** TEST 'LLVM :: BugPoint/compile-custom.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/bugpoint -load /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/lib/BugpointPasses.so --compile-custom --compile-command="/data/data/com.android.python27/files/python/bin/python /data/data/com.spartacusrex.spartacuside/files/llvm/test/BugPoint/compile-custom.ll.py arg1 arg2" --output-prefix /data/data/com.spartacusrex.spartacuside/files/build/test/BugPoint/Output/compile-custom.ll.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/test/BugPoint/compile-custom.ll | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/BugPoint/compile-custom.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
Cannot find `gcc' in PATH!

/data/data/com.spartacusrex.spartacuside/files/llvm/test/BugPoint/compile-custom.ll:8:10: error: expected string not found in input
; CHECK: Error: arg1 arg2
         ^
<stdin>:1:1: note: scanning from here
Read input file : '/data/data/com.spartacusrex.spartacuside/files/llvm/test/BugPoint/compile-custom.ll'
^
<stdin>:1:12: note: possible intended match here
Read input file : '/data/data/com.spartacusrex.spartacuside/files/llvm/test/BugPoint/compile-custom.ll'
           ^

--

********************
Testing: 0 .. 10.. 20.. 30.. 40..
XPASS: LLVM :: CodeGen/Generic/MachineBranchProb.ll (9504 of 19215)
******************** TEST 'LLVM :: CodeGen/Generic/MachineBranchProb.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llc < /data/data/com.spartacusrex.spartacuside/files/llvm/test/CodeGen/Generic/MachineBranchProb.ll -print-machineinstrs=expand-isel-pseudos -o /dev/null 2>&1 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/CodeGen/Generic/MachineBranchProb.ll
--
Exit Code: 0

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60..
FAIL: LLVM :: DebugInfo/SystemZ/eh_frame_personality.s (13739 of 19215)
******************** TEST 'LLVM :: DebugInfo/SystemZ/eh_frame_personality.s' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc -triple=s390x-linux-gnu -filetype=obj /data/data/com.spartacusrex.spartacuside/files/llvm/test/DebugInfo/SystemZ/eh_frame_personality.s -o /data/data/com.spartacusrex.spartacuside/files/build/test/DebugInfo/SystemZ/Output/eh_frame_personality.s.tmp
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-objdump -s /data/data/com.spartacusrex.spartacuside/files/build/test/DebugInfo/SystemZ/Output/eh_frame_personality.s.tmp | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/DebugInfo/SystemZ/eh_frame_personality.s
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/DebugInfo/SystemZ/eh_frame_personality.s:65:15: error: expected string not found in input
# CHECK-NEXT: 0010 0e079b00 0000001b 1b0c0fa0 01000000 ................
              ^
<stdin>:21:2: note: scanning from here
 0010 0e079b00 0000001b 1b0c0fa0 01000000 ...............

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/2003-01-04-LoopTest.ll (13915 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/2003-01-04-LoopTest.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/2003-01-04-LoopTest.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/2003-01-04-PhiTest.ll (13916 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/2003-01-04-PhiTest.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/2003-01-04-PhiTest.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/2002-12-16-ArgTest.ll (13917 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/2002-12-16-ArgTest.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/2002-12-16-ArgTest.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'printf' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/2003-01-04-ArgumentBug.ll (13918 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/2003-01-04-ArgumentBug.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/2003-01-04-ArgumentBug.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/2003-01-09-SARTest.ll (13919 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/2003-01-09-SARTest.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/2003-01-09-SARTest.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/2003-01-10-FUCOM.ll (13920 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/2003-01-10-FUCOM.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/2003-01-10-FUCOM.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/2003-01-15-AlignmentTest.ll (13921 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/2003-01-15-AlignmentTest.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/2003-01-15-AlignmentTest.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function '__aeabi_unwind_cpp_pr1' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/2003-05-07-ArgumentTest.ll (13923 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/2003-05-07-ArgumentTest.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/2003-05-07-ArgumentTest.ll test
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'puts' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/2003-05-11-PHIRegAllocBug.ll (13924 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/2003-05-11-PHIRegAllocBug.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/2003-06-04-bzip2-bug.ll (13925 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/2003-06-04-bzip2-bug.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/2003-06-04-bzip2-bug.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/2003-06-05-PHIBug.ll (13926 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/2003-06-05-PHIBug.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/2003-06-05-PHIBug.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/2003-08-15-AllocaAssertion.ll (13927 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/2003-08-15-AllocaAssertion.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/2003-08-15-AllocaAssertion.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function '__aeabi_unwind_cpp_pr1' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/2003-08-21-EnvironmentTest.ll (13928 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/2003-08-21-EnvironmentTest.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/2003-08-21-EnvironmentTest.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'strlen' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/2003-08-23-RegisterAllocatePhysReg.ll (13929 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/2003-08-23-RegisterAllocatePhysReg.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/2003-08-23-RegisterAllocatePhysReg.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function '__aeabi_unwind_cpp_pr1' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/2005-12-02-TailCallBug.ll (13930 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/2005-12-02-TailCallBug.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/2005-12-02-TailCallBug.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll (13931 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/2003-01-04-ArgumentBug.ll (13936 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/2003-01-04-ArgumentBug.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/2003-01-04-ArgumentBug.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/2002-12-16-ArgTest.ll (13937 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/2002-12-16-ArgTest.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/2002-12-16-ArgTest.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'printf' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/2003-01-04-PhiTest.ll (13938 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/2003-01-04-PhiTest.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/2003-01-04-PhiTest.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/2003-01-04-LoopTest.ll (13939 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/2003-01-04-LoopTest.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/2003-01-04-LoopTest.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/2003-01-09-SARTest.ll (13940 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/2003-01-09-SARTest.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/2003-01-09-SARTest.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/2003-01-10-FUCOM.ll (13941 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/2003-01-10-FUCOM.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/2003-01-10-FUCOM.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/2003-01-15-AlignmentTest.ll (13942 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/2003-01-15-AlignmentTest.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/2003-01-15-AlignmentTest.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function '__aeabi_unwind_cpp_pr1' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/2003-05-07-ArgumentTest.ll (13944 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/2003-05-07-ArgumentTest.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/2003-05-07-ArgumentTest.ll test
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'puts' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/2003-05-11-PHIRegAllocBug.ll (13945 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/2003-05-11-PHIRegAllocBug.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/2003-05-11-PHIRegAllocBug.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/2003-06-04-bzip2-bug.ll (13946 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/2003-06-04-bzip2-bug.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/2003-06-04-bzip2-bug.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/2003-08-15-AllocaAssertion.ll (13947 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/2003-08-15-AllocaAssertion.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/2003-08-15-AllocaAssertion.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function '__aeabi_unwind_cpp_pr1' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/2003-06-05-PHIBug.ll (13948 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/2003-06-05-PHIBug.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/2003-06-05-PHIBug.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/2003-08-21-EnvironmentTest.ll (13949 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/2003-08-21-EnvironmentTest.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/2003-08-21-EnvironmentTest.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'strlen' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/2003-08-23-RegisterAllocatePhysReg.ll (13950 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/2003-08-23-RegisterAllocatePhysReg.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/2003-08-23-RegisterAllocatePhysReg.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function '__aeabi_unwind_cpp_pr1' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll (13951 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/2005-12-02-TailCallBug.ll (13952 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/2005-12-02-TailCallBug.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/2005-12-02-TailCallBug.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/2013-04-04-RelocAddend.ll (13956 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/2013-04-04-RelocAddend.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/2013-04-04-RelocAddend.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/cross-module-a.ll (13958 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/cross-module-a.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -extra-module=/data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/Inputs/cross-module-b.ll /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/cross-module-a.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/hello.ll (13964 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/hello.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/hello.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'puts' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/hello2.ll (13965 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/hello2.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/hello2.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'printf' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/load-object-a.ll (13966 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/load-object-a.ll' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/test/ExecutionEngine/MCJIT/Output/load-object-a.ll.tmp.cachedir /data/data/com.spartacusrex.spartacuside/files/build/test/ExecutionEngine/MCJIT/Output/load-object-a.ll.tmp.cachedir2 /data/data/com.spartacusrex.spartacuside/files/build/test/ExecutionEngine/MCJIT/Output/load-object-a.ll.tmp.cachedir3
mkdir -p /data/data/com.spartacusrex.spartacuside/files/build/test/ExecutionEngine/MCJIT/Output/load-object-a.ll.tmp.cachedir /data/data/com.spartacusrex.spartacuside/files/build/test/ExecutionEngine/MCJIT/Output/load-object-a.ll.tmp.cachedir2 /data/data/com.spartacusrex.spartacuside/files/build/test/ExecutionEngine/MCJIT/Output/load-object-a.ll.tmp.cachedir3
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -extra-module=/data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/Inputs/multi-module-b.ll -extra-module=/data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/Inputs/multi-module-c.ll -enable-cache-manager -object-cache-dir=/data/data/com.spartacusrex.spartacuside/files/build/test/ExecutionEngine/MCJIT/Output/load-object-a.ll.tmp.cachedir /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/load-object-a.ll
find /data/data/com.spartacusrex.spartacuside/files/build/test/ExecutionEngine/MCJIT/Output/load-object-a.ll.tmp.cachedir -type f -name 'multi-module-?.o' -exec mv -v '{}' /data/data/com.spartacusrex.spartacuside/files/build/test/ExecutionEngine/MCJIT/Output/load-object-a.ll.tmp.cachedir2 ';'
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -extra-object=/data/data/com.spartacusrex.spartacuside/files/build/test/ExecutionEngine/MCJIT/Output/load-object-a.ll.tmp.cachedir2/multi-module-b.o -extra-object=/data/data/com.spartacusrex.spartacuside/files/build/test/ExecutionEngine/MCJIT/Output/load-object-a.ll.tmp.cachedir2/multi-module-c.o /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/load-object-a.ll
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-ar r /data/data/com.spartacusrex.spartacuside/files/build/test/ExecutionEngine/MCJIT/Output/load-object-a.ll.tmp.cachedir3/load-object.a /data/data/com.spartacusrex.spartacuside/files/build/test/ExecutionEngine/MCJIT/Output/load-object-a.ll.tmp.cachedir2/multi-module-b.o
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-ar r /data/data/com.spartacusrex.spartacuside/files/build/test/ExecutionEngine/MCJIT/Output/load-object-a.ll.tmp.cachedir3/load-object.a /data/data/com.spartacusrex.spartacuside/files/build/test/ExecutionEngine/MCJIT/Output/load-object-a.ll.tmp.cachedir2/multi-module-c.o
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -extra-archive=/data/data/com.spartacusrex.spartacuside/files/build/test/ExecutionEngine/MCJIT/Output/load-object-a.ll.tmp.cachedir3/load-object.a /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/load-object-a.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/multi-module-a.ll (13967 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/multi-module-a.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -extra-module=/data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/Inputs/multi-module-b.ll -extra-module=/data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/Inputs/multi-module-c.ll /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/multi-module-a.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/non-extern-addend-smallcodemodel.ll (13970 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/non-extern-addend-smallcodemodel.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -code-model=small /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/non-extern-addend-smallcodemodel.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/non-extern-addend.ll (13971 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/non-extern-addend.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/non-extern-addend.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/pr13727.ll (13972 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/pr13727.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -O0 -disable-lazy-compilation=false /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/pr13727.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/remote/cross-module-a.ll (13973 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/remote/cross-module-a.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -extra-module=/data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/remote/Inputs/cross-module-b.ll -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli-child-target /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/remote/cross-module-a.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
RPC Error: ReadBytes: Expecting 4 bytes, Got 0
IO Error: WriteBytes: Broken pipe
ERROR: , (RemoteTargetExternal::ReceiveHeader), (RPCChannel::create) - Stopping process!, (RemoteTargetExternal::SendHeader)

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/remote/multi-module-a.ll (13975 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/remote/multi-module-a.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -extra-module=/data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/remote/Inputs/multi-module-b.ll -extra-module=/data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/remote/Inputs/multi-module-c.ll -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli-child-target /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/remote/multi-module-a.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
RPC Error: ReadBytes: Expecting 4 bytes, Got 0
IO Error: WriteBytes: Broken pipe
ERROR: , (RemoteTargetExternal::ReceiveHeader), (RPCChannel::create) - Stopping process!, (RemoteTargetExternal::SendHeader)

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/remote/simpletest-remote.ll (13978 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/remote/simpletest-remote.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -remote-mcjit -mcjit-remote-process=/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli-child-target /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/remote/simpletest-remote.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
warning: remote mcjit does not support lazy compilation
RPC Error: ReadBytes: Expecting 4 bytes, Got 0
IO Error: WriteBytes: Broken pipe
ERROR: , (RemoteTargetExternal::ReceiveHeader), (RPCChannel::create) - Stopping process!, (RemoteTargetExternal::SendHeader)

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/remote/test-common-symbols-remote.ll (13980 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/remote/test-common-symbols-remote.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -remote-mcjit -O0 -disable-lazy-compilation=false -mcjit-remote-process=/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli-child-target /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/remote/test-common-symbols-remote.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
warning: remote mcjit does not support lazy compilation
RPC Error: ReadBytes: Expecting 4 bytes, Got 0
IO Error: WriteBytes: Broken pipe
ERROR: , (RemoteTargetExternal::ReceiveHeader), (RPCChannel::create) - Stopping process!, (RemoteTargetExternal::SendHeader)

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/remote/test-data-align-remote.ll (13982 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/remote/test-data-align-remote.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -remote-mcjit -O0 -mcjit-remote-process=/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli-child-target /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/remote/test-data-align-remote.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
warning: remote mcjit does not support lazy compilation
RPC Error: ReadBytes: Expecting 4 bytes, Got 0
IO Error: WriteBytes: Broken pipe
ERROR: , (RemoteTargetExternal::ReceiveHeader), (RPCChannel::create) - Stopping process!, (RemoteTargetExternal::SendHeader)

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/simplesttest.ll (13984 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/simplesttest.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/simplesttest.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/simpletest.ll (13985 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/simpletest.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/simpletest.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/stubs.ll (13987 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/stubs.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -disable-lazy-compilation=false /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/stubs.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-arith.ll (13988 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-arith.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-arith.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-branch.ll (13989 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-branch.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-branch.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-call-no-external-funcs.ll (13990 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-call-no-external-funcs.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-call-no-external-funcs.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-call.ll (13991 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-call.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-call.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-cast.ll (13992 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-cast.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-cast.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-common-symbols-alignment.ll (13993 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-common-symbols-alignment.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -O0 /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-common-symbols-alignment.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-common-symbols.ll (13994 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-common-symbols.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -O0 -disable-lazy-compilation=false /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-common-symbols.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-constantexpr.ll (13995 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-constantexpr.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-constantexpr.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-data-align.ll (13996 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-data-align.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -O0 /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-data-align.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-fp-no-external-funcs.ll (13997 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-fp-no-external-funcs.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-fp-no-external-funcs.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-fp.ll (13998 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-fp.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-fp.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'fmod' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-global-ctors.ll (13999 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-global-ctors.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-global-ctors.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-global-init-nonzero.ll (14001 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-global-init-nonzero.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-global-init-nonzero.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-global.ll (14002 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-global.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-global.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-loadstore.ll (14003 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-loadstore.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-loadstore.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function '__aeabi_unwind_cpp_pr1' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-local.ll (14004 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-local.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-local.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-logical.ll (14005 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-logical.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-logical.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-loop.ll (14006 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-loop.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-loop.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-phi.ll (14007 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-phi.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-phi.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-ptr-reloc.ll (14009 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-ptr-reloc.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -O0 /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-ptr-reloc.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-ret.ll (14010 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-ret.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-ret.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-return.ll (14011 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-return.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-return.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-setcond-fp.ll (14012 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-setcond-fp.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-setcond-fp.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-setcond-int.ll (14013 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-setcond-int.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-setcond-int.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/test-shift.ll (14014 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/test-shift.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/test-shift.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/hello.ll (14022 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/hello.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/hello.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'puts' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/hello2.ll (14023 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/hello2.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/hello2.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'printf' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/mov64zext32.ll (14024 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/mov64zext32.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/mov64zext32.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/simplesttest.ll (14025 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/simplesttest.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/simplesttest.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/simpletest.ll (14026 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/simpletest.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/simpletest.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/stubs.ll (14027 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/stubs.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -disable-lazy-compilation=false /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/stubs.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-arith.ll (14028 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-arith.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-arith.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-branch.ll (14029 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-branch.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-branch.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-call-no-external-funcs.ll (14030 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-call-no-external-funcs.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-call-no-external-funcs.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-call.ll (14031 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-call.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-call.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-cast.ll (14032 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-cast.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-cast.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-common-symbols.ll (14033 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-common-symbols.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -O0 -disable-lazy-compilation=false /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-common-symbols.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-constantexpr.ll (14034 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-constantexpr.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-constantexpr.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-fp-no-external-funcs.ll (14035 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-fp-no-external-funcs.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli  /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-fp-no-external-funcs.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-fp.ll (14036 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-fp.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-fp.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'fmod' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-global-init-nonzero.ll (14037 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-global-init-nonzero.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli  /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-global-init-nonzero.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-global.ll (14038 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-global.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-global.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-interp-vec-arithm_float.ll (14039 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-interp-vec-arithm_float.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-interp-vec-arithm_float.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-interp-vec-arithm_int.ll (14040 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-interp-vec-arithm_int.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-interp-vec-arithm_int.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-interp-vec-logical.ll (14045 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-interp-vec-logical.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-interp-vec-logical.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-interp-vec-setcond-fp.ll (14047 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-interp-vec-setcond-fp.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-interp-vec-setcond-fp.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-interp-vec-setcond-int.ll (14048 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-interp-vec-setcond-int.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-interp-vec-setcond-int.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-loadstore.ll (14051 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-loadstore.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-loadstore.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function '__aeabi_unwind_cpp_pr1' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-local.ll (14052 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-local.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-local.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-logical.ll (14053 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-logical.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-logical.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-loop.ll (14054 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-loop.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-loop.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-phi.ll (14055 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-phi.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-phi.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-ret.ll (14056 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-ret.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-ret.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-return.ll (14057 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-return.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-return.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-setcond-fp.ll (14058 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-setcond-fp.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-setcond-fp.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-setcond-int.ll (14059 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-setcond-int.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-setcond-int.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/test-shift.ll (14060 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/test-shift.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/test-shift.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
LLVM ERROR: Program used external function 'exit' which could not be resolved!

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: ExecutionEngine/MCJIT/remote/test-fp-no-external-funcs-remote.ll (14414 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/remote/test-fp-no-external-funcs-remote.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -remote-mcjit -mcjit-remote-process=/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli-child-target /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/remote/test-fp-no-external-funcs-remote.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
warning: remote mcjit does not support lazy compilation
RPC Error: ReadBytes: Expecting 4 bytes, Got 0
IO Error: WriteBytes: Broken pipe
ERROR: , (RemoteTargetExternal::ReceiveHeader), (RPCChannel::create) - Stopping process!, (RemoteTargetExternal::SendHeader)

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.
FAIL: LLVM :: ExecutionEngine/MCJIT/remote/test-global-init-nonzero-remote.ll (14610 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/remote/test-global-init-nonzero-remote.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -remote-mcjit -mcjit-remote-process=/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli-child-target /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/remote/test-global-init-nonzero-remote.ll > /dev/null
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
warning: remote mcjit does not support lazy compilation
RPC Error: ReadBytes: Expecting 4 bytes, Got 0
IO Error: WriteBytes: Broken pipe
ERROR: , (RemoteTargetExternal::ReceiveHeader), (RPCChannel::create) - Stopping process!, (RemoteTargetExternal::SendHeader)

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.
FAIL: LLVM :: MC/ARM/eh-compact-pr0.s (14644 of 19215)
******************** TEST 'LLVM :: MC/ARM/eh-compact-pr0.s' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-compact-pr0.s -triple=armv7-unknown-linux-gnueabi -filetype=obj -o -    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -sd -sr | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-compact-pr0.s
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-compact-pr0.s:42:10: error: expected string not found in input
@ CHECK: 0000: 00482DE9 0DB0A0E1 0048BDE8 0EF0A0E1 |.H-......H......|
         ^
<stdin>:102:2: note: scanning from here
 0000: 00482DE9 0DB0A0E1 0048BDE8 0EF0A0E1 |.H-..H.|

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.
FAIL: LLVM :: MC/ARM/eh-compact-pr1.s (14646 of 19215)
******************** TEST 'LLVM :: MC/ARM/eh-compact-pr1.s' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-compact-pr1.s -triple=armv7-unknown-linux-gnueabi -filetype=obj -o -    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -sd -sr | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-compact-pr1.s
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-compact-pr1.s:31:10: error: expected string not found in input
@ CHECK: 0000: 30482DE9 000081E0 08B08DE2 3088BDE8 |0H-.........0...|
         ^
<stdin>:102:2: note: scanning from here
 0000: 30482DE9 000081E0 08B08DE2 3088BDE8 |0H-.....0.|

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.
FAIL: LLVM :: MC/ARM/eh-directive-cantunwind.s (14647 of 19215)
******************** TEST 'LLVM :: MC/ARM/eh-directive-cantunwind.s' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-cantunwind.s -triple=armv7-unknown-linux-gnueabi -filetype=obj -o -    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -sd -sr | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-cantunwind.s
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-cantunwind.s:30:10: error: expected string not found in input
@ CHECK: 0000: 1EFF2FE1 |../.|
         ^
<stdin>:44:2: note: scanning from here
 0000: 1EFF2FE1 |./|

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.
FAIL: LLVM :: MC/ARM/eh-directive-handlerdata.s (14650 of 19215)
******************** TEST 'LLVM :: MC/ARM/eh-directive-handlerdata.s' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-handlerdata.s -triple=armv7-unknown-linux-gnueabi -filetype=obj -o -    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -sd -sr | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-handlerdata.s
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-handlerdata.s:25:10: error: expected string not found in input
@ CHECK: 0000: 1EFF2FE1 |../.|
         ^
<stdin>:102:2: note: scanning from here
 0000: 1EFF2FE1 |./|

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.
FAIL: LLVM :: MC/ARM/eh-directive-integrated-test.s (14651 of 19215)
******************** TEST 'LLVM :: MC/ARM/eh-directive-integrated-test.s' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-integrated-test.s -triple=armv7-unknown-linux-gnueabi -filetype=obj -o -    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -sd | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-integrated-test.s
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-integrated-test.s:57:10: error: expected string not found in input
@ CHECK: 0000: 00000000 C94A9B01 B0818484 |.....J......|
         ^
<stdin>:111:2: note: scanning from here
 0000: 00000000 C94A9B01 B0818484 |....J.....|

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.
FAIL: LLVM :: MC/ARM/eh-directive-multiple-offsets.s (14655 of 19215)
******************** TEST 'LLVM :: MC/ARM/eh-directive-multiple-offsets.s' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-multiple-offsets.s -triple=armv7-unknown-linux-gnueabi -filetype=obj -o -    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -sd | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-multiple-offsets.s
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-multiple-offsets.s:31:10: error: expected string not found in input
@ CHECK: 0000: 00000000 B0009B00 |........|
         ^
<stdin>:111:2: note: scanning from here
 0000: 00000000 B0009B00 |.......|

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.
FAIL: LLVM :: MC/ARM/eh-directive-pad.s (14656 of 19215)
******************** TEST 'LLVM :: MC/ARM/eh-directive-pad.s' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-pad.s -triple=armv7-unknown-linux-gnueabi -filetype=obj -o -    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -sd | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-pad.s
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-pad.s:41:10: error: expected string not found in input
@ CHECK: 0000: 00000000 B0B0B000 |........|
         ^
<stdin>:110:2: note: scanning from here
 0000: 00000000 B0B0B000 |.....|

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.
FAIL: LLVM :: MC/ARM/eh-directive-personality.s (14657 of 19215)
******************** TEST 'LLVM :: MC/ARM/eh-directive-personality.s' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-personality.s -triple=armv7-unknown-linux-gnueabi -filetype=obj -o -    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -sd -sr | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-personality.s
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-personality.s:26:10: error: expected string not found in input
@ CHECK: 0000: 1EFF2FE1 |../.|
         ^
<stdin>:102:2: note: scanning from here
 0000: 1EFF2FE1 |./|

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.
FAIL: LLVM :: MC/ARM/eh-directive-save.s (14663 of 19215)
******************** TEST 'LLVM :: MC/ARM/eh-directive-save.s' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-save.s -triple=armv7-unknown-linux-gnueabi -filetype=obj -o -    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -sd | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-save.s
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-save.s:95:10: error: expected string not found in input
@ CHECK: 0000: 00000000 B001B100 00000000 B003B100 |................|
         ^
<stdin>:113:2: note: scanning from here
 0000: 00000000 B001B100 00000000 B003B100 |............|

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.
FAIL: LLVM :: MC/ARM/eh-directive-section.s (14664 of 19215)
******************** TEST 'LLVM :: MC/ARM/eh-directive-section.s' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-section.s -triple=armv7-unknown-linux-gnueabi -filetype=obj -o -    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -sd -sr -t | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-section.s
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-section.s:54:10: error: expected string not found in input
@ CHECK: 0000: 1EFF2FE1 |../.|
         ^
<stdin>:102:2: note: scanning from here
 0000: 1EFF2FE1 |./|

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.
FAIL: LLVM :: MC/ARM/eh-directive-section-multiple-func.s (14665 of 19215)
******************** TEST 'LLVM :: MC/ARM/eh-directive-section-multiple-func.s' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-section-multiple-func.s -triple=armv7-unknown-linux-gnueabi -filetype=obj -o -    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -sd -sr -t | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-section-multiple-func.s
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-section-multiple-func.s:57:10: error: expected string not found in input
@ CHECK: 0000: 1EFF2FE1 1EFF2FE1 |../.../.|
         ^
<stdin>:102:2: note: scanning from here
 0000: 1EFF2FE1 1EFF2FE1 |././|

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.
FAIL: LLVM :: MC/ARM/eh-directive-setfp.s (14667 of 19215)
******************** TEST 'LLVM :: MC/ARM/eh-directive-setfp.s' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-setfp.s -triple=armv7-unknown-linux-gnueabi -filetype=obj -o -    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -sd | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-setfp.s
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-setfp.s:48:10: error: expected string not found in input
@ CHECK: 0000: 00000000 B0B09B00 |........|
         ^
<stdin>:110:2: note: scanning from here
 0000: 00000000 B0B09B00 |......|

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.
FAIL: LLVM :: MC/ARM/eh-directive-text-section.s (14668 of 19215)
******************** TEST 'LLVM :: MC/ARM/eh-directive-text-section.s' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-text-section.s -triple=armv7-unknown-linux-gnueabi -filetype=obj -o -    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -sd -sr | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-text-section.s
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-text-section.s:40:10: error: expected string not found in input
@ CHECK: 0000: 1EFF2FE1 |../.|
         ^
<stdin>:44:2: note: scanning from here
 0000: 1EFF2FE1 |./|

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.
FAIL: LLVM :: MC/ARM/eh-directive-text-section-multiple-func.s (14669 of 19215)
******************** TEST 'LLVM :: MC/ARM/eh-directive-text-section-multiple-func.s' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-text-section-multiple-func.s -triple=armv7-unknown-linux-gnueabi -filetype=obj -o -    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -sd -sr -r -t | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-text-section-multiple-func.s
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-text-section-multiple-func.s:37:10: error: expected string not found in input
@ CHECK: 0000: 1EFF2FE1 1EFF2FE1 |../.../.|
         ^
<stdin>:44:2: note: scanning from here
 0000: 1EFF2FE1 1EFF2FE1 |././|

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.
FAIL: LLVM :: MC/ARM/eh-directive-vsave.s (14675 of 19215)
******************** TEST 'LLVM :: MC/ARM/eh-directive-vsave.s' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-vsave.s -triple=armv7-unknown-linux-gnueabi -filetype=obj -o -    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -sd -sr | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-vsave.s
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/ARM/eh-directive-vsave.s:74:10: error: expected string not found in input
@ CHECK: 0000: 00000000 B000C900 00000000 B003C900 |................|
         ^
<stdin>:124:2: note: scanning from here
 0000: 00000000 B000C900 00000000 B003C900 |............|

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.
FAIL: LLVM :: ExecutionEngine/MCJIT/remote/test-ptr-reloc-remote.ll (14839 of 19215)
******************** TEST 'LLVM :: ExecutionEngine/MCJIT/remote/test-ptr-reloc-remote.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli -remote-mcjit -O0 -mcjit-remote-process=/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/lli-child-target /data/data/com.spartacusrex.spartacuside/files/llvm/test/ExecutionEngine/MCJIT/remote/test-ptr-reloc-remote.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
warning: remote mcjit does not support lazy compilation
RPC Error: ReadBytes: Expecting 4 bytes, Got 0
IO Error: WriteBytes: Broken pipe
ERROR: , (RemoteTargetExternal::ReceiveHeader), (RPCChannel::create) - Stopping process!, (RemoteTargetExternal::SendHeader)

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.
FAIL: LLVM :: MC/COFF/symbol-fragment-offset.s (14980 of 19215)
******************** TEST 'LLVM :: MC/COFF/symbol-fragment-offset.s' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc -filetype=obj -triple i686-pc-win32 /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/COFF/symbol-fragment-offset.s | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -h -s -sr -sd -t | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/COFF/symbol-fragment-offset.s
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/COFF/symbol-fragment-offset.s:74:11: error: expected string not found in input
// CHECK: 0000: 83EC04C7 04240000 0000E800 000000C7 |.....$..........|
          ^
<stdin>:43:2: note: scanning from here
 0000: 83EC04C7 04240000 0000E800 000000C7 |...$........|

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70..
XPASS: LLVM :: MC/Mips/mips32r6/valid-xfail.s (15511 of 19215)
******************** TEST 'LLVM :: MC/Mips/mips32r6/valid-xfail.s' FAILED ********************
Script:
--
not /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/Mips/mips32r6/valid-xfail.s -triple=mips-unknown-linux -show-encoding -mcpu=mips32r6 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/not /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/Mips/mips32r6/valid-xfail.s
--
Exit Code: 0

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
<stdin>:9:22: error: CHECK-NOT: string occurred!
 bovc $zero, $2, 4 # encoding: [0x20,0x02,0x00,0x01]
                     ^
/data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/Mips/mips32r6/valid-xfail.s:6:14: note: CHECK-NOT: pattern specified here
# CHECK-NOT: encoding
             ^

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70..
FAIL: LLVM :: MC/Mips/mips64eb-fixups.s (15535 of 19215)
******************** TEST 'LLVM :: MC/Mips/mips64eb-fixups.s' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc -filetype=obj -triple mips64eb-unknown-freebsd /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/Mips/mips64eb-fixups.s -o - | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -sd | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/Mips/mips64eb-fixups.s
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/Mips/mips64eb-fixups.s:39:15: error: expected string not found in input
# CHECK-NEXT: 0000: FF0001FF 00000002 FF000000 00000000 |................|
              ^
<stdin>:92:2: note: scanning from here
 0000: FF0001FF 00000002 FF000000 00000000 |.............|

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70..
XPASS: LLVM :: MC/Mips/mips64r6/valid-xfail.s (15554 of 19215)
******************** TEST 'LLVM :: MC/Mips/mips64r6/valid-xfail.s' FAILED ********************
Script:
--
not /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-mc /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/Mips/mips64r6/valid-xfail.s -triple=mips64-unknown-linux -show-encoding -mcpu=mips64r6 | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/not /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/Mips/mips64r6/valid-xfail.s
--
Exit Code: 0

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
<stdin>:9:22: error: CHECK-NOT: string occurred!
 bovc $zero, $2, 4 # encoding: [0x20,0x02,0x00,0x01]
                     ^
/data/data/com.spartacusrex.spartacuside/files/llvm/test/MC/Mips/mips64r6/valid-xfail.s:6:14: note: CHECK-NOT: pattern specified here
# CHECK-NOT: encoding
             ^

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80
FAIL: LLVM :: Object/extract.ll (15775 of 19215)
******************** TEST 'LLVM :: Object/extract.ll' FAILED ********************
Script:
--
cd /data/data/com.spartacusrex.spartacuside/files/build/test/Object/Output
rm -f very_long_bytecode_file_name.bc
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-ar p /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/GNU.a very_long_bytecode_file_name.bc |    cmp -s /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/very_long_bytecode_file_name.bc -
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-ar x /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/GNU.a very_long_bytecode_file_name.bc
cmp -s /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/very_long_bytecode_file_name.bc         very_long_bytecode_file_name.bc
rm -f very_long_bytecode_file_name.bc
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-ar p /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/MacOSX.a very_long_bytecode_file_name.bc |    cmp -s /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/very_long_bytecode_file_name.bc -
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-ar x /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/MacOSX.a very_long_bytecode_file_name.bc
cmp -s /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/very_long_bytecode_file_name.bc         very_long_bytecode_file_name.bc
rm -f very_long_bytecode_file_name.bc
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-ar p /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/SVR4.a very_long_bytecode_file_name.bc |    cmp -s /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/very_long_bytecode_file_name.bc -
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-ar x /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/SVR4.a very_long_bytecode_file_name.bc
cmp -s /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/very_long_bytecode_file_name.bc         very_long_bytecode_file_name.bc
rm -f very_long_bytecode_file_name.bc
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-ar p /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/xpg4.a very_long_bytecode_file_name.bc |   cmp -s /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/very_long_bytecode_file_name.bc -
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-ar x /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/xpg4.a very_long_bytecode_file_name.bc
cmp -s /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/very_long_bytecode_file_name.bc         very_long_bytecode_file_name.bc
rm -f very_long_bytecode_file_name.bc
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-ar xo /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/GNU.a very_long_bytecode_file_name.bc
rm -f /data/data/com.spartacusrex.spartacuside/files/build/test/Object/Output/extract.ll.tmp.a
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-ar rc /data/data/com.spartacusrex.spartacuside/files/build/test/Object/Output/extract.ll.tmp.a very_long_bytecode_file_name.bc
env TZ=GMT /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-ar tv /data/data/com.spartacusrex.spartacuside/files/build/test/Object/Output/extract.ll.tmp.a | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/extract.ll
--
Exit Code: 1

Command Output (stdout):
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-ar: Function not implemented.

--
Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
chdir: error retrieving current directory: getcwd: cannot access parent directories: Permission denied

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80
FAIL: LLVM :: Object/objdump-section-content.test (15789 of 19215)
******************** TEST 'LLVM :: Object/objdump-section-content.test' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/yaml2obj /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/COFF/i386.yaml | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-objdump -s - | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/objdump-section-content.test -check-prefix COFF-i386
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-objdump -s /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/trivial-object-test.elf-i386               | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/objdump-section-content.test -check-prefix ELF-i386
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-objdump -s /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/Inputs/shared-object-test.elf-i386               | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/objdump-section-content.test -check-prefix BSS
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/objdump-section-content.test:9:12: error: expected string not found in input
COFF-i386: 0000 83ec0cc7 44240800 000000c7 04240000 ....D$.......$..
           ^
<stdin>:5:2: note: scanning from here
 0000 83ec0cc7 44240800 000000c7 04240000 ..D$......$..

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80
FAIL: LLVM :: Object/yaml2obj-elf-section-basic.yaml (15806 of 19215)
******************** TEST 'LLVM :: Object/yaml2obj-elf-section-basic.yaml' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/yaml2obj -format=elf /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/yaml2obj-elf-section-basic.yaml | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -sections -section-data - | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/yaml2obj-elf-section-basic.yaml
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/yaml2obj -format=elf -o /data/data/com.spartacusrex.spartacuside/files/build/test/Object/Output/yaml2obj-elf-section-basic.yaml.tmp /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/yaml2obj-elf-section-basic.yaml
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -sections -section-data /data/data/com.spartacusrex.spartacuside/files/build/test/Object/Output/yaml2obj-elf-section-basic.yaml.tmp | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/yaml2obj-elf-section-basic.yaml
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/Object/yaml2obj-elf-section-basic.yaml:62:15: error: expected string not found in input
# CHECK-NEXT: 0000: FEBF0000 00000000 |........|
              ^
<stdin>:58:2: note: scanning from here
 0000: FEBF0000 00000000 |......|

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80
FAIL: LLVM :: Other/can-execute.txt (15839 of 19215)
******************** TEST 'LLVM :: Other/can-execute.txt' FAILED ********************
Script:
--
cp -f /data/data/com.spartacusrex.spartacuside/files/llvm/test/Other/Inputs/TestProg/TestProg /data/data/com.spartacusrex.spartacuside/files/build/test/Other/Output/TestProg
chmod 111 /data/data/com.spartacusrex.spartacuside/files/build/test/Other/Output/TestProg
export PATH=/data/data/com.spartacusrex.spartacuside/files/llvm/test/Other/Inputs:/data/data/com.spartacusrex.spartacuside/files/build/test/Other/Output:/data/data/com.spartacusrex.spartacuside/files/llvm/test/Other/Inputs/TestProg:$PATH
not TestProg
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
Error: No such file or directory

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80
FAIL: LLVM :: Other/pipefail.txt (15852 of 19215)
******************** TEST 'LLVM :: Other/pipefail.txt' FAILED ********************
Script:
--
((false | true) && echo true || echo false) | grep false
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.
FAIL: LLVM :: Transforms/InstCombine/fmul.ll (16860 of 19215)
******************** TEST 'LLVM :: Transforms/InstCombine/fmul.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/opt -S -instcombine < /data/data/com.spartacusrex.spartacuside/files/llvm/test/Transforms/InstCombine/fmul.ll | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/Transforms/InstCombine/fmul.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/Transforms/InstCombine/fmul.ll:50:10: error: expected string not found in input
; CHECK: %mul = fsub float -0.000000e+00, %1
         ^
<stdin>:25:2: note: scanning from here
 %mul = fsub float 0.000000e+00, %1
 ^
/data/data/com.spartacusrex.spartacuside/files/llvm/test/Transforms/InstCombine/fmul.ll:60:10: error: expected string not found in input
; CHECK: %mul = fsub float -0.000000e+00, %1
         ^
<stdin>:31:2: note: scanning from here
 %mul = fsub float 0.000000e+00, %1
 ^
/data/data/com.spartacusrex.spartacuside/files/llvm/test/Transforms/InstCombine/fmul.ll:71:10: error: expected string not found in input
; CHECK: fsub float -0.000000e+00, %x
         ^
<stdin>:35:21: note: scanning from here
define float @test7(float %x, float %y) {
                    ^
<stdin>:36:10: note: possible intended match here
 %sub1 = fsub float 0.000000e+00, %x
         ^

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.
FAIL: LLVM :: Transforms/InstCombine/fsub.ll (16875 of 19215)
******************** TEST 'LLVM :: Transforms/InstCombine/fsub.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/opt < /data/data/com.spartacusrex.spartacuside/files/llvm/test/Transforms/InstCombine/fsub.ll -instcombine -S | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/Transforms/InstCombine/fsub.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/Transforms/InstCombine/fsub.ll:9:15: error: expected string not found in input
; CHECK-NEXT: %t2 = fsub float -0.000000e+00, %t1
              ^
<stdin>:6:2: note: scanning from here
 %t2 = fsub float 0.000000e+00, %t1
 ^

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80..
FAIL: LLVM :: Transforms/InstCombine/select-crash.ll (16973 of 19215)
******************** TEST 'LLVM :: Transforms/InstCombine/select-crash.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/opt < /data/data/com.spartacusrex.spartacuside/files/llvm/test/Transforms/InstCombine/select-crash.ll -instcombine -S | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/Transforms/InstCombine/select-crash.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/Transforms/InstCombine/select-crash.ll:7:10: error: expected string not found in input
; CHECK: fsub double -0.000000
         ^
<stdin>:4:55: note: scanning from here
define fastcc double @gimp_operation_color_balance_map(float %value, double %highlights) #0 {
                                                      ^
<stdin>:12:7: note: possible intended match here
 %0 = fsub double 0.000000e+00, %sub
      ^

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80..
FAIL: LLVM :: Transforms/Reassociate/fast-SubReassociate.ll (17642 of 19215)
******************** TEST 'LLVM :: Transforms/Reassociate/fast-SubReassociate.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/opt < /data/data/com.spartacusrex.spartacuside/files/llvm/test/Transforms/Reassociate/fast-SubReassociate.ll -reassociate -constprop -instcombine -S | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/Transforms/Reassociate/fast-SubReassociate.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/Transforms/Reassociate/fast-SubReassociate.ll:52:15: error: expected string not found in input
; CHECK-NEXT: %B.neg = fsub fast float -0.000000e+00, %B
              ^
<stdin>:25:20: note: scanning from here
define float @test4(float %A, float %B, float %C, float %D) {
                   ^
<stdin>:26:2: note: possible intended match here
 %B.neg = fsub fast float 0.000000e+00, %B
 ^

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80..
FAIL: LLVM :: Transforms/Reassociate/fast-basictest.ll (17643 of 19215)
******************** TEST 'LLVM :: Transforms/Reassociate/fast-basictest.ll' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/opt < /data/data/com.spartacusrex.spartacuside/files/llvm/test/Transforms/Reassociate/fast-basictest.ll -reassociate -gvn -instcombine -S | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/Transforms/Reassociate/fast-basictest.ll
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/Transforms/Reassociate/fast-basictest.ll:6:15: error: expected string not found in input
; CHECK-NEXT: fsub fast float -0.000000e+00, %arg
              ^
<stdin>:9:20: note: scanning from here
define float @test1(float %arg) {
                   ^
<stdin>:10:13: note: possible intended match here
 %arg.neg = fsub fast float 0.000000e+00, %arg
            ^
/data/data/com.spartacusrex.spartacuside/files/llvm/test/Transforms/Reassociate/fast-basictest.ll:272:15: error: expected string not found in input
; CHECK-NEXT: fsub fast float -0.000000e+00, %b
              ^
<stdin>:134:21: note: scanning from here
define float @test20(float %a, float %b, float %c) #0 {
                    ^
<stdin>:135:11: note: possible intended match here
 %b.neg = fsub fast float 0.000000e+00, %b
          ^

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90
FAIL: LLVM :: tools/llvm-cov/showExpansions.cpp (18080 of 19215)
******************** TEST 'LLVM :: tools/llvm-cov/showExpansions.cpp' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov show /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/Inputs/showExpansions.covmapping -instr-profile /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/Inputs/showExpansions.profdata -dump -show-expansions -filename-equivalence /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/showExpansions.cpp | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/showExpansions.cpp
--
Exit Code: 2

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
Stack dump:
0.      Program arguments: /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov show /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov show -instr-profile /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/Inputs/showExpansions.profdata -dump -show-expansions -filename-equivalence /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/showExpansions.cpp
FileCheck error: '-' is empty.

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90
FAIL: LLVM :: tools/llvm-cov/showHighlightedRanges.cpp (18081 of 19215)
******************** TEST 'LLVM :: tools/llvm-cov/showHighlightedRanges.cpp' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov show /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/Inputs/highlightedRanges.covmapping -instr-profile /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/Inputs/highlightedRanges.profdata -dump -filename-equivalence /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/showHighlightedRanges.cpp | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/showHighlightedRanges.cpp
--
Exit Code: 2

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
Stack dump:
0.      Program arguments: /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov show /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov show -instr-profile /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/Inputs/highlightedRanges.profdata -dump -filename-equivalence /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/showHighlightedRanges.cpp
FileCheck error: '-' is empty.

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90
FAIL: LLVM :: tools/llvm-readobj/sections-ext.test (18133 of 19215)
******************** TEST 'LLVM :: tools/llvm-readobj/sections-ext.test' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -st -sr -sd /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-readobj/Inputs/trivial.obj.coff-i386    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-readobj/sections-ext.test -check-prefix COFF
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -st -sr -sd /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-readobj/Inputs/trivial.obj.elf-i386    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-readobj/sections-ext.test -check-prefix ELF
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -st -sr -sd /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-readobj/Inputs/trivial.obj.macho-i386    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-readobj/sections-ext.test -check-prefix MACHO-I386
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -st -sr -sd /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-readobj/Inputs/trivial.obj.macho-x86-64    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-readobj/sections-ext.test -check-prefix MACHO-X86-64
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -st -sr -sd /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-readobj/Inputs/trivial.obj.macho-ppc    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-readobj/sections-ext.test -check-prefix MACHO-PPC
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -s -st -sr -sd /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-readobj/Inputs/trivial.obj.macho-ppc64    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-readobj/sections-ext.test -check-prefix MACHO-PPC64
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-readobj -expand-relocs -s -st -sr -sd /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-readobj/Inputs/trivial.obj.macho-arm    | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-readobj/sections-ext.test -check-prefix MACHO-ARM
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-readobj/sections-ext.test:68:12: error: expected string not found in input
COFF-NEXT: 0000: 50C70424 00000000 E8000000 00E80000 |P..$............|
           ^
<stdin>:58:2: note: scanning from here
 0000: 50C70424 00000000 E8000000 00E80000 |P.$..........|

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90
FAIL: LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.SemanticsDeath (18141 of 19215)
******************** TEST 'LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.SemanticsDeath' FAILED ********************
Note: Google Test filter = APFloatTest.SemanticsDeath
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from APFloatTest
[ RUN      ] APFloatTest.SemanticsDeath
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:956: Failure
Death test: APFloat(APFloat::IEEEsingle, 0.0f).convertToDouble()
    Result: died but not with expected error.
  Expected: Float semantics are not IEEEdouble
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:957: Failure
Death test: APFloat(APFloat::IEEEdouble, 0.0 ).convertToFloat()
    Result: died but not with expected error.
  Expected: Float semantics are not IEEEsingle
Actual msg:
[  DEATH   ]
[  FAILED  ] APFloatTest.SemanticsDeath (16 ms)
[----------] 1 test from APFloatTest (16 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (17 ms total)
[  PASSED  ] 0 tests.
[  FAILED  ] 1 test, listed below:
[  FAILED  ] APFloatTest.SemanticsDeath

 1 FAILED TEST

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90
FAIL: LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.StringDecimalDeath (18142 of 19215)
******************** TEST 'LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.StringDecimalDeath' FAILED ********************
Note: Google Test filter = APFloatTest.StringDecimalDeath
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from APFloatTest
[ RUN      ] APFloatTest.StringDecimalDeath
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:961: Failure
Death test: APFloat(APFloat::IEEEdouble, "")
    Result: died but not with expected error.
  Expected: Invalid string length
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:962: Failure
Death test: APFloat(APFloat::IEEEdouble, "+")
    Result: died but not with expected error.
  Expected: String has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:963: Failure
Death test: APFloat(APFloat::IEEEdouble, "-")
    Result: died but not with expected error.
  Expected: String has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:965: Failure
Death test: APFloat(APFloat::IEEEdouble, StringRef("\0", 1))
    Result: died but not with expected error.
  Expected: Invalid character in significand
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:966: Failure
Death test: APFloat(APFloat::IEEEdouble, StringRef("1\0", 2))
    Result: died but not with expected error.
  Expected: Invalid character in significand
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:967: Failure
Death test: APFloat(APFloat::IEEEdouble, StringRef("1\02", 3))
    Result: died but not with expected error.
  Expected: Invalid character in significand
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:968: Failure
Death test: APFloat(APFloat::IEEEdouble, StringRef("1\02e1", 5))
    Result: died but not with expected error.
  Expected: Invalid character in significand
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:969: Failure
Death test: APFloat(APFloat::IEEEdouble, StringRef("1e\0", 3))
    Result: died but not with expected error.
  Expected: Invalid character in exponent
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:970: Failure
Death test: APFloat(APFloat::IEEEdouble, StringRef("1e1\0", 4))
    Result: died but not with expected error.
  Expected: Invalid character in exponent
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:971: Failure
Death test: APFloat(APFloat::IEEEdouble, StringRef("1e1\02", 5))
    Result: died but not with expected error.
  Expected: Invalid character in exponent
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:973: Failure
Death test: APFloat(APFloat::IEEEdouble, "1.0f")
    Result: died but not with expected error.
  Expected: Invalid character in significand
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:975: Failure
Death test: APFloat(APFloat::IEEEdouble, "..")
    Result: died but not with expected error.
  Expected: String contains multiple dots
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:976: Failure
Death test: APFloat(APFloat::IEEEdouble, "..0")
    Result: died but not with expected error.
  Expected: String contains multiple dots
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:977: Failure
Death test: APFloat(APFloat::IEEEdouble, "1.0.0")
    Result: died but not with expected error.
  Expected: String contains multiple dots
Actual msg:
[  DEATH   ]
[  FAILED  ] APFloatTest.StringDecimalDeath (120 ms)
[----------] 1 test from APFloatTest (120 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (120 ms total)
[  PASSED  ] 0 tests.
[  FAILED  ] 1 test, listed below:
[  FAILED  ] APFloatTest.StringDecimalDeath

 1 FAILED TEST

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90
FAIL: LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.StringDecimalExponentDeath (18143 of 19215)
******************** TEST 'LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.StringDecimalExponentDeath' FAILED ********************
Note: Google Test filter = APFloatTest.StringDecimalExponentDeath
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from APFloatTest
[ RUN      ] APFloatTest.StringDecimalExponentDeath
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1005: Failure
Death test: APFloat(APFloat::IEEEdouble, "1e")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1006: Failure
Death test: APFloat(APFloat::IEEEdouble, "+1e")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1007: Failure
Death test: APFloat(APFloat::IEEEdouble, "-1e")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1009: Failure
Death test: APFloat(APFloat::IEEEdouble, "1.e")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1010: Failure
Death test: APFloat(APFloat::IEEEdouble, "+1.e")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1011: Failure
Death test: APFloat(APFloat::IEEEdouble, "-1.e")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1013: Failure
Death test: APFloat(APFloat::IEEEdouble, ".1e")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1014: Failure
Death test: APFloat(APFloat::IEEEdouble, "+.1e")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1015: Failure
Death test: APFloat(APFloat::IEEEdouble, "-.1e")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1017: Failure
Death test: APFloat(APFloat::IEEEdouble, "1.1e")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1018: Failure
Death test: APFloat(APFloat::IEEEdouble, "+1.1e")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1019: Failure
Death test: APFloat(APFloat::IEEEdouble, "-1.1e")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1022: Failure
Death test: APFloat(APFloat::IEEEdouble, "1e+")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1023: Failure
Death test: APFloat(APFloat::IEEEdouble, "1e-")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1025: Failure
Death test: APFloat(APFloat::IEEEdouble, ".1e")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1026: Failure
Death test: APFloat(APFloat::IEEEdouble, ".1e+")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1027: Failure
Death test: APFloat(APFloat::IEEEdouble, ".1e-")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1029: Failure
Death test: APFloat(APFloat::IEEEdouble, "1.0e")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1030: Failure
Death test: APFloat(APFloat::IEEEdouble, "1.0e+")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1031: Failure
Death test: APFloat(APFloat::IEEEdouble, "1.0e-")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
[  FAILED  ] APFloatTest.StringDecimalExponentDeath (141 ms)
[----------] 1 test from APFloatTest (141 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (142 ms total)
[  PASSED  ] 0 tests.
[  FAILED  ] 1 test, listed below:
[  FAILED  ] APFloatTest.StringDecimalExponentDeath

 1 FAILED TEST

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90
FAIL: LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.StringDecimalSignificandDeath (18144 of 19215)
******************** TEST 'LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.StringDecimalSignificandDeath' FAILED ********************
Note: Google Test filter = APFloatTest.StringDecimalSignificandDeath
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from APFloatTest
[ RUN      ] APFloatTest.StringDecimalSignificandDeath
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:981: Failure
Death test: APFloat(APFloat::IEEEdouble, ".")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:982: Failure
Death test: APFloat(APFloat::IEEEdouble, "+.")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:983: Failure
Death test: APFloat(APFloat::IEEEdouble, "-.")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:986: Failure
Death test: APFloat(APFloat::IEEEdouble, "e")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:987: Failure
Death test: APFloat(APFloat::IEEEdouble, "+e")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:988: Failure
Death test: APFloat(APFloat::IEEEdouble, "-e")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:990: Failure
Death test: APFloat(APFloat::IEEEdouble, "e1")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:991: Failure
Death test: APFloat(APFloat::IEEEdouble, "+e1")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:992: Failure
Death test: APFloat(APFloat::IEEEdouble, "-e1")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:994: Failure
Death test: APFloat(APFloat::IEEEdouble, ".e1")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:995: Failure
Death test: APFloat(APFloat::IEEEdouble, "+.e1")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:996: Failure
Death test: APFloat(APFloat::IEEEdouble, "-.e1")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:999: Failure
Death test: APFloat(APFloat::IEEEdouble, ".e")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1000: Failure
Death test: APFloat(APFloat::IEEEdouble, "+.e")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1001: Failure
Death test: APFloat(APFloat::IEEEdouble, "-.e")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
[  FAILED  ] APFloatTest.StringDecimalSignificandDeath (161 ms)
[----------] 1 test from APFloatTest (161 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (163 ms total)
[  PASSED  ] 0 tests.
[  FAILED  ] 1 test, listed below:
[  FAILED  ] APFloatTest.StringDecimalSignificandDeath

 1 FAILED TEST

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90
FAIL: LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.StringHexadecimalDeath (18145 of 19215)
******************** TEST 'LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.StringHexadecimalDeath' FAILED ********************
Note: Google Test filter = APFloatTest.StringHexadecimalDeath
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from APFloatTest
[ RUN      ] APFloatTest.StringHexadecimalDeath
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1035: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x")
    Result: died but not with expected error.
  Expected: Invalid string
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1036: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x")
    Result: died but not with expected error.
  Expected: Invalid string
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1037: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x")
    Result: died but not with expected error.
  Expected: Invalid string
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1039: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x0")
    Result: died but not with expected error.
  Expected: Hex strings require an exponent
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1040: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x0")
    Result: died but not with expected error.
  Expected: Hex strings require an exponent
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1041: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x0")
    Result: died but not with expected error.
  Expected: Hex strings require an exponent
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1043: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x0.")
    Result: died but not with expected error.
  Expected: Hex strings require an exponent
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1044: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x0.")
    Result: died but not with expected error.
  Expected: Hex strings require an exponent
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1045: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x0.")
    Result: died but not with expected error.
  Expected: Hex strings require an exponent
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1047: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x.0")
    Result: died but not with expected error.
  Expected: Hex strings require an exponent
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1048: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x.0")
    Result: died but not with expected error.
  Expected: Hex strings require an exponent
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1049: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x.0")
    Result: died but not with expected error.
  Expected: Hex strings require an exponent
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1051: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x0.0")
    Result: died but not with expected error.
  Expected: Hex strings require an exponent
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1052: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x0.0")
    Result: died but not with expected error.
  Expected: Hex strings require an exponent
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1053: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x0.0")
    Result: died but not with expected error.
  Expected: Hex strings require an exponent
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1055: Failure
Death test: APFloat(APFloat::IEEEdouble, StringRef("0x\0", 3))
    Result: died but not with expected error.
  Expected: Invalid character in significand
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1056: Failure
Death test: APFloat(APFloat::IEEEdouble, StringRef("0x1\0", 4))
    Result: died but not with expected error.
  Expected: Invalid character in significand
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1057: Failure
Death test: APFloat(APFloat::IEEEdouble, StringRef("0x1\02", 5))
    Result: died but not with expected error.
  Expected: Invalid character in significand
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1058: Failure
Death test: APFloat(APFloat::IEEEdouble, StringRef("0x1\02p1", 7))
    Result: died but not with expected error.
  Expected: Invalid character in significand
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1059: Failure
Death test: APFloat(APFloat::IEEEdouble, StringRef("0x1p\0", 5))
    Result: died but not with expected error.
  Expected: Invalid character in exponent
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1060: Failure
Death test: APFloat(APFloat::IEEEdouble, StringRef("0x1p1\0", 6))
    Result: died but not with expected error.
  Expected: Invalid character in exponent
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1061: Failure
Death test: APFloat(APFloat::IEEEdouble, StringRef("0x1p1\02", 7))
    Result: died but not with expected error.
  Expected: Invalid character in exponent
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1063: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x1p0f")
    Result: died but not with expected error.
  Expected: Invalid character in exponent
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1065: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x..p1")
    Result: died but not with expected error.
  Expected: String contains multiple dots
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1066: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x..0p1")
    Result: died but not with expected error.
  Expected: String contains multiple dots
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1067: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x1.0.0p1")
    Result: died but not with expected error.
  Expected: String contains multiple dots
Actual msg:
[  DEATH   ]
[  FAILED  ] APFloatTest.StringHexadecimalDeath (230 ms)
[----------] 1 test from APFloatTest (230 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (230 ms total)
[  PASSED  ] 0 tests.
[  FAILED  ] 1 test, listed below:
[  FAILED  ] APFloatTest.StringHexadecimalDeath

 1 FAILED TEST

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90
FAIL: LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.StringHexadecimalExponentDeath (18146 of 19215)
******************** TEST 'LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.StringHexadecimalExponentDeath' FAILED ********************
Note: Google Test filter = APFloatTest.StringHexadecimalExponentDeath
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from APFloatTest
[ RUN      ] APFloatTest.StringHexadecimalExponentDeath
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1102: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x1p")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1103: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x1p")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1104: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x1p")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1106: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x1p+")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1107: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x1p+")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1108: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x1p+")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1110: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x1p-")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1111: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x1p-")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1112: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x1p-")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1115: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x1.p")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1116: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x1.p")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1117: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x1.p")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1119: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x1.p+")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1120: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x1.p+")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1121: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x1.p+")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1123: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x1.p-")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1124: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x1.p-")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1125: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x1.p-")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1128: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x.1p")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1129: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x.1p")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1130: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x.1p")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1132: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x.1p+")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1133: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x.1p+")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1134: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x.1p+")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1136: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x.1p-")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1137: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x.1p-")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1138: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x.1p-")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1141: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x1.1p")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1142: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x1.1p")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1143: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x1.1p")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1145: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x1.1p+")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1146: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x1.1p+")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1147: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x1.1p+")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1149: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x1.1p-")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1150: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x1.1p-")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1151: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x1.1p-")
    Result: died but not with expected error.
  Expected: Exponent has no digits
Actual msg:
[  DEATH   ]
[  FAILED  ] APFloatTest.StringHexadecimalExponentDeath (243 ms)
[----------] 1 test from APFloatTest (243 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (243 ms total)
[  PASSED  ] 0 tests.
[  FAILED  ] 1 test, listed below:
[  FAILED  ] APFloatTest.StringHexadecimalExponentDeath

 1 FAILED TEST

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90
FAIL: LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.StringHexadecimalSignificandDeath (18147 of 19215)
******************** TEST 'LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.StringHexadecimalSignificandDeath' FAILED ********************
Note: Google Test filter = APFloatTest.StringHexadecimalSignificandDeath
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from APFloatTest
[ RUN      ] APFloatTest.StringHexadecimalSignificandDeath
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1071: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x.")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1072: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x.")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1073: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x.")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1075: Failure
Death test: APFloat(APFloat::IEEEdouble, "0xp")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1076: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0xp")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1077: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0xp")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1079: Failure
Death test: APFloat(APFloat::IEEEdouble, "0xp+")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1080: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0xp+")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1081: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0xp+")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1083: Failure
Death test: APFloat(APFloat::IEEEdouble, "0xp-")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1084: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0xp-")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1085: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0xp-")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1088: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x.p")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1089: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x.p")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1090: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x.p")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1092: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x.p+")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1093: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x.p+")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1094: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x.p+")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1096: Failure
Death test: APFloat(APFloat::IEEEdouble, "0x.p-")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1097: Failure
Death test: APFloat(APFloat::IEEEdouble, "+0x.p-")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APFloatTest.cpp:1098: Failure
Death test: APFloat(APFloat::IEEEdouble, "-0x.p-")
    Result: died but not with expected error.
  Expected: Significand has no digits
Actual msg:
[  DEATH   ]
[  FAILED  ] APFloatTest.StringHexadecimalSignificandDeath (167 ms)
[----------] 1 test from APFloatTest (168 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (169 ms total)
[  PASSED  ] 0 tests.
[  FAILED  ] 1 test, listed below:
[  FAILED  ] APFloatTest.StringHexadecimalSignificandDeath

 1 FAILED TEST

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90
FAIL: LLVM :: tools/llvm-cov/showLineExecutionCounts.cpp (18178 of 19215)
******************** TEST 'LLVM :: tools/llvm-cov/showLineExecutionCounts.cpp' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov show /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/Inputs/lineExecutionCounts.covmapping -instr-profile /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/Inputs/lineExecutionCounts.profdata -no-colors -filename-equivalence /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp
--
Exit Code: 2

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
Stack dump:
0.      Program arguments: /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov show /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov show -instr-profile /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/Inputs/lineExecutionCounts.profdata -no-colors -filename-equivalence /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp
FileCheck error: '-' is empty.

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90
FAIL: LLVM-Unit :: ADT/Release+Asserts/ADTTests/APIntTest.StringDeath (18188 of 19215)
******************** TEST 'LLVM-Unit :: ADT/Release+Asserts/ADTTests/APIntTest.StringDeath' FAILED ********************
Note: Google Test filter = APIntTest.StringDeath
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from APIntTest
[ RUN      ] APIntTest.StringDeath
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APIntTest.cpp:473: Failure
Death test: APInt(0, "", 0)
    Result: died but not with expected error.
  Expected: Bitwidth too small
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APIntTest.cpp:474: Failure
Death test: APInt(32, "", 0)
    Result: died but not with expected error.
  Expected: Invalid string length
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APIntTest.cpp:475: Failure
Death test: APInt(32, "0", 0)
    Result: died but not with expected error.
  Expected: Radix should be 2, 8, 10, 16, or 36!
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APIntTest.cpp:476: Failure
Death test: APInt(32, "", 10)
    Result: died but not with expected error.
  Expected: Invalid string length
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APIntTest.cpp:477: Failure
Death test: APInt(32, "-", 10)
    Result: died but not with expected error.
  Expected: String is only a sign, needs a value.
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APIntTest.cpp:478: Failure
Death test: APInt(1, "1234", 10)
    Result: died but not with expected error.
  Expected: Insufficient bit width
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APIntTest.cpp:479: Failure
Death test: APInt(32, "\0", 10)
    Result: died but not with expected error.
  Expected: Invalid string length
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APIntTest.cpp:480: Failure
Death test: APInt(32, StringRef("1\02", 3), 10)
    Result: died but not with expected error.
  Expected: Invalid character in digit string
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/APIntTest.cpp:481: Failure
Death test: APInt(32, "1L", 10)
    Result: died but not with expected error.
  Expected: Invalid character in digit string
Actual msg:
[  DEATH   ]
[  FAILED  ] APIntTest.StringDeath (48 ms)
[----------] 1 test from APIntTest (48 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (48 ms total)
[  PASSED  ] 0 tests.
[  FAILED  ] 1 test, listed below:
[  FAILED  ] APIntTest.StringDeath

 1 FAILED TEST

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90
FAIL: LLVM-Unit :: ADT/Release+Asserts/ADTTests/PackedVectorTest.SignedValues (18369 of 19215)
******************** TEST 'LLVM-Unit :: ADT/Release+Asserts/ADTTests/PackedVectorTest.SignedValues' FAILED ********************
Note: Google Test filter = PackedVectorTest.SignedValues
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from PackedVectorTest
[ RUN      ] PackedVectorTest.SignedValues
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/PackedVectorTest.cpp:101: Failure
Death test: Vec[0] = -3
    Result: died but not with expected error.
  Expected: value is too big
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/PackedVectorTest.cpp:102: Failure
Death test: Vec[0] = 2
    Result: died but not with expected error.
  Expected: value is too big
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/PackedVectorTest.cpp:107: Failure
Death test: Vec[0] = -5
    Result: died but not with expected error.
  Expected: value is too big
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/PackedVectorTest.cpp:108: Failure
Death test: Vec[0] = 4
    Result: died but not with expected error.
  Expected: value is too big
Actual msg:
[  DEATH   ]
[  FAILED  ] PackedVectorTest.SignedValues (22 ms)
[----------] 1 test from PackedVectorTest (22 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (22 ms total)
[  PASSED  ] 0 tests.
[  FAILED  ] 1 test, listed below:
[  FAILED  ] PackedVectorTest.SignedValues

 1 FAILED TEST

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90
FAIL: LLVM-Unit :: ADT/Release+Asserts/ADTTests/PackedVectorTest.UnsignedValues (18370 of 19215)
******************** TEST 'LLVM-Unit :: ADT/Release+Asserts/ADTTests/PackedVectorTest.UnsignedValues' FAILED ********************
Note: Google Test filter = PackedVectorTest.UnsignedValues
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from PackedVectorTest
[ RUN      ] PackedVectorTest.UnsignedValues
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/PackedVectorTest.cpp:85: Failure
Death test: Vec[0] = 4
    Result: died but not with expected error.
  Expected: value is too big
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/PackedVectorTest.cpp:86: Failure
Death test: Vec[0] = -1
    Result: died but not with expected error.
  Expected: value is too big
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/PackedVectorTest.cpp:87: Failure
Death test: Vec[0] = 0x100
    Result: died but not with expected error.
  Expected: value is too big
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/ADT/PackedVectorTest.cpp:92: Failure
Death test: Vec[0] = 8
    Result: died but not with expected error.
  Expected: value is too big
Actual msg:
[  DEATH   ]
[  FAILED  ] PackedVectorTest.UnsignedValues (36 ms)
[----------] 1 test from PackedVectorTest (36 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (37 ms total)
[  PASSED  ] 0 tests.
[  FAILED  ] 1 test, listed below:
[  FAILED  ] PackedVectorTest.UnsignedValues

 1 FAILED TEST

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90
FAIL: LLVM :: tools/llvm-cov/llvm-cov.test (18415 of 19215)
******************** TEST 'LLVM :: tools/llvm-cov/llvm-cov.test' FAILED ********************
Script:
--
rm -rf /data/data/com.spartacusrex.spartacuside/files/build/test/tools/llvm-cov/Output/llvm-cov.test.tmp
mkdir /data/data/com.spartacusrex.spartacuside/files/build/test/tools/llvm-cov/Output/llvm-cov.test.tmp
cd /data/data/com.spartacusrex.spartacuside/files/build/test/tools/llvm-cov/Output/llvm-cov.test.tmp
cp /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/Inputs/test* .
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov test.c | diff -u test_no_options.output -
diff -aub test_no_options.cpp.gcov test.cpp.gcov
diff -aub test_no_options.h.gcov test.h.gcov
mkdir -p /data/data/com.spartacusrex.spartacuside/files/build/test/tools/llvm-cov/Output/llvm-cov.test.tmp/objdir
cp test.gcno test.gcda /data/data/com.spartacusrex.spartacuside/files/build/test/tools/llvm-cov/Output/llvm-cov.test.tmp/objdir
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov -o objdir test.c | diff -u test_no_options.output -
diff -aub test_objdir.cpp.gcov test.cpp.gcov
diff -aub test_objdir.h.gcov test.h.gcov
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov -o objdir/test.o test.c | diff -u test_no_options.output -
diff -aub test_objdir.cpp.gcov test.cpp.gcov
diff -aub test_objdir.h.gcov test.h.gcov
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov -o objdir/test test.c | diff -u test_no_options.output -
diff -aub test_objdir.cpp.gcov test.cpp.gcov
diff -aub test_objdir.h.gcov test.h.gcov
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov -n test.c | diff -u test_no_output.output -
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov test_paths.cpp 2>/dev/null | diff -u test_missing.output -
diff -aub test_missing.cpp.gcov test.cpp.gcov
diff -aub test_missing.h.gcov test.h.gcov
mkdir -p /data/data/com.spartacusrex.spartacuside/files/build/test/tools/llvm-cov/Output/llvm-cov.test.tmp/srcdir/nested_dir
cp test.cpp test.h /data/data/com.spartacusrex.spartacuside/files/build/test/tools/llvm-cov/Output/llvm-cov.test.tmp/srcdir
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov -p test_paths.cpp | diff -u test_preserve_paths.output -
diff -aub test_paths.cpp.gcov srcdir#nested_dir#^#test.cpp.gcov
diff -aub test_paths.h.gcov srcdir#nested_dir#^#test.h.gcov
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov test_paths.cpp | diff -u test_no_preserve_paths.output -
diff -aub test_paths.cpp.gcov test.cpp.gcov
diff -aub test_paths.h.gcov test.h.gcov
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov -l test_paths.cpp | diff -u test_long_file_names.output -
diff -aub test_paths.cpp.gcov test_paths.cpp##test.cpp.gcov
diff -aub test_paths.h.gcov test_paths.cpp##test.h.gcov
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov -lp -gcno test_paths.gcno -gcda test_paths.gcda srcdir/../test_paths.cpp | diff -u test_long_paths.output -
diff -aub test_paths.cpp.gcov srcdir#^#test_paths.cpp##srcdir#nested_dir#^#test.cpp.gcov
diff -aub test_paths.h.gcov srcdir#^#test_paths.cpp##srcdir#nested_dir#^#test.h.gcov
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov test.c -f | diff -u test_-f.output -
diff -aub test_no_options.cpp.gcov test.cpp.gcov
diff -aub test_no_options.h.gcov test.h.gcov
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov test.c -a | diff -u test_no_options.output -
diff -aub test_-a.cpp.gcov test.cpp.gcov
diff -aub test_-a.h.gcov test.h.gcov
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov test.c -a -b | diff -u test_-b.output -
diff -aub test_-a_-b.cpp.gcov test.cpp.gcov
diff -aub test_-a_-b.h.gcov test.h.gcov
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov test.c -a -b -f | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/not diff -u test_-b_-f.output - >/dev/null
diff -aub test_-a_-b.cpp.gcov test.cpp.gcov
diff -aub test_-a_-b.h.gcov test.h.gcov
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov test.c -a -b -u | diff -u test_-b.output -
diff -aub test_-a_-b_-u.cpp.gcov test.cpp.gcov
diff -aub test_-a_-b_-u.h.gcov test.h.gcov
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov test.c -a -b -c -u | diff -u test_-b.output -
diff -aub test_-a_-b_-c_-u.cpp.gcov test.cpp.gcov
diff -aub test_-a_-b_-c_-u.h.gcov test.h.gcov
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov test.c -gcda=no_such_gcda_file | diff -u test_no_gcda.output -
diff -aub test_no_gcda.cpp.gcov test.cpp.gcov
diff -aub test_no_gcda.h.gcov test.h.gcov
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov test.c -gcno=test_read_fail.gcno
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov test.c -gcda=test_file_checksum_fail.gcda
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov test.c -gcda=test_func_checksum_fail.gcda
--
Exit Code: 1

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
chdir: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
diff: can't create temp file '/tmp/dif9U3Y4q': No such file or directory
warning: Using the gcov compatible mode (this behaviour may be dropped in the future).
LLVM ERROR: IO failure on output stream.

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90.
FAIL: LLVM-Unit :: IR/Release+Asserts/IRTests/ConstantsTest.AsInstructionsTest (18738 of 19215)
******************** TEST 'LLVM-Unit :: IR/Release+Asserts/IRTests/ConstantsTest.AsInstructionsTest' FAILED ********************
Note: Google Test filter = ConstantsTest.AsInstructionsTest
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from ConstantsTest
[ RUN      ] ConstantsTest.AsInstructionsTest
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/IR/ConstantsTest.cpp:198: Failure
Value of: __s
  Actual: "  <badref> = fsub float 0.000000e+00, uitofp (i32 ptrtoint (i32** @dummy to i32) to float)"
Expected: std::string("  <badref> = " "fsub float -0.000000e+00, " "uitofp (i32 ptrtoint (i32** @dummy to i32) to float)")
Which is: "  <badref> = fsub float -0.000000e+00, uitofp (i32 ptrtoint (i32** @dummy to i32) to float)"
[  FAILED  ] ConstantsTest.AsInstructionsTest (11 ms)
[----------] 1 test from ConstantsTest (11 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (11 ms total)
[  PASSED  ] 0 tests.
[  FAILED  ] 1 test, listed below:
[  FAILED  ] ConstantsTest.AsInstructionsTest

 1 FAILED TEST

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90.
FAIL: LLVM-Unit :: IR/Release+Asserts/IRTests/ConstantsTest.ReplaceWithConstantTest (18746 of 19215)
******************** TEST 'LLVM-Unit :: IR/Release+Asserts/IRTests/ConstantsTest.ReplaceWithConstantTest' FAILED ********************
Note: Google Test filter = ConstantsTest.ReplaceWithConstantTest
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from ConstantsTest
[ RUN      ] ConstantsTest.ReplaceWithConstantTest
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/IR/ConstantsTest.cpp:269: Failure
Death test: Global->replaceAllUsesWith(GEP)
    Result: died but not with expected error.
  Expected: this->replaceAllUsesWith\(expr\(this\)\) is NOT valid!
Actual msg:
[  DEATH   ]
[  FAILED  ] ConstantsTest.ReplaceWithConstantTest (6 ms)
[----------] 1 test from ConstantsTest (7 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (7 ms total)
[  PASSED  ] 0 tests.
[  FAILED  ] 1 test, listed below:
[  FAILED  ] ConstantsTest.ReplaceWithConstantTest

 1 FAILED TEST

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90.
FAIL: LLVM-Unit :: IR/Release+Asserts/IRTests/LeakDetector.Death1 (18764 of 19215)
******************** TEST 'LLVM-Unit :: IR/Release+Asserts/IRTests/LeakDetector.Death1' FAILED ********************
Note: Google Test filter = LeakDetector.Death1
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from LeakDetector
[ RUN      ] LeakDetector.Death1
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/IR/LeakDetectorTest.cpp:24: Failure
Death test: LeakDetector::addGarbageObject((void*) 1)
    Result: died but not with expected error.
  Expected: .*Ts.count\(o\) == 0 && "Object already in set!"
Actual msg:
[  DEATH   ]
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/IR/LeakDetectorTest.cpp:26: Failure
Death test: LeakDetector::addGarbageObject((void*) 2)
    Result: died but not with expected error.
  Expected: Cache != o && "Object already in set!"
Actual msg:
[  DEATH   ]
[  FAILED  ] LeakDetector.Death1 (11 ms)
[----------] 1 test from LeakDetector (11 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (12 ms total)
[  PASSED  ] 0 tests.
[  FAILED  ] 1 test, listed below:
[  FAILED  ] LeakDetector.Death1

 1 FAILED TEST

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90.
FAIL: LLVM-Unit :: IR/Release+Asserts/IRTests/MDStringTest.PrintingComplex (18774 of 19215)
******************** TEST 'LLVM-Unit :: IR/Release+Asserts/IRTests/MDStringTest.PrintingComplex' FAILED ********************
Note: Google Test filter = MDStringTest.PrintingComplex
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from MDStringTest
[ RUN      ] MDStringTest.PrintingComplex
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/IR/MetadataTest.cpp:71: Failure
Value of: oss.str().c_str()
  Actual: "metadata !"\00\0A\22\5C""
Expected: "metadata !\"\\00\\0A\\22\\5C\\FF\""
Which is: "metadata !"\00\0A\22\5C\FF""
[  FAILED  ] MDStringTest.PrintingComplex (1 ms)
[----------] 1 test from MDStringTest (1 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (1 ms total)
[  PASSED  ] 0 tests.
[  FAILED  ] 1 test, listed below:
[  FAILED  ] MDStringTest.PrintingComplex

 1 FAILED TEST

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90.
FAIL: LLVM :: tools/llvm-cov/showRegionMarkers.cpp (18783 of 19215)
******************** TEST 'LLVM :: tools/llvm-cov/showRegionMarkers.cpp' FAILED ********************
Script:
--
/data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov show /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/Inputs/regionMarkers.covmapping -instr-profile /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/Inputs/regionMarkers.profdata -show-regions -dump -filename-equivalence /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/showRegionMarkers.cpp | /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/FileCheck /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/showRegionMarkers.cpp
--
Exit Code: 2

Command Output (stderr):
--
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
Stack dump:
0.      Program arguments: /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov show /data/data/com.spartacusrex.spartacuside/files/build/Release+Asserts/bin/llvm-cov show -instr-profile /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/Inputs/regionMarkers.profdata -show-regions -dump -filename-equivalence /data/data/com.spartacusrex.spartacuside/files/llvm/test/tools/llvm-cov/showRegionMarkers.cpp
FileCheck error: '-' is empty.

--

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90..
FAIL: LLVM-Unit :: Support/Release+Asserts/SupportTests/ErrorOr.SimpleValue (18992 of 19215)
******************** TEST 'LLVM-Unit :: Support/Release+Asserts/SupportTests/ErrorOr.SimpleValue' FAILED ********************
Note: Google Test filter = ErrorOr.SimpleValue
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from ErrorOr
[ RUN      ] ErrorOr.SimpleValue
/home/bobajeff/Downloads/LLVM4Android/llvm/unittests/Support/ErrorOrTest.cpp:36: Failure
Death test: *a
    Result: died but not with expected error.
  Expected: Cannot get value when an error exists
Actual msg:
[  DEATH   ]
[  FAILED  ] ErrorOr.SimpleValue (6 ms)
[----------] 1 test from ErrorOr (6 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (6 ms total)
[  PASSED  ] 0 tests.
[  FAILED  ] 1 test, listed below:
[  FAILED  ] ErrorOr.SimpleValue

 1 FAILED TEST

[WARNING] /home/bobajeff/Downloads/LLVM4Android/llvm/utils/unittest/googletest/src/gtest-death-test.cc:791:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

********************
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90..
Testing Time: 1123.05s
********************
Unexpected Passing Tests (3):
    LLVM :: CodeGen/Generic/MachineBranchProb.ll
    LLVM :: MC/Mips/mips32r6/valid-xfail.s
    LLVM :: MC/Mips/mips64r6/valid-xfail.s

********************
Failing Tests (206):
    Clang :: ARCMT/designated-init-in-header/designated-init-in-header.m
    Clang :: ARCMT/migrate-plist-output.m
    Clang :: ARCMT/migrate-space-in-path.m
    Clang :: ARCMT/migrate-with-pch.m
    Clang :: ARCMT/migrate.m
    Clang :: ARCMT/objcmt-arc-cf-annotations.m
    Clang :: ARCMT/objcmt-atomic-property.m
    Clang :: ARCMT/objcmt-boxing.m
    Clang :: ARCMT/objcmt-designated-initializer.m
    Clang :: ARCMT/objcmt-instancetype-2.m
    Clang :: ARCMT/objcmt-instancetype.m
    Clang :: ARCMT/objcmt-migrate-all.m
    Clang :: ARCMT/objcmt-ns-macros.m
    Clang :: ARCMT/objcmt-ns-nonatomic-iosonly.m
    Clang :: ARCMT/objcmt-ns-returns-inner-pointer.m
    Clang :: ARCMT/objcmt-numeric-literals.m
    Clang :: ARCMT/objcmt-property-availability.m
    Clang :: ARCMT/objcmt-property.m
    Clang :: ARCMT/objcmt-protocol-conformance.m
    Clang :: ARCMT/objcmt-subscripting-literals-in-arc.m
    Clang :: ARCMT/objcmt-subscripting-literals.m
    Clang :: ARCMT/objcmt-subscripting-unavailable.m
    Clang :: ARCMT/objcmt-with-pch.m
    Clang :: ARCMT/whitelisted/objcmt-with-whitelist-impl.m
    Clang :: ARCMT/whitelisted/objcmt-with-whitelist.m
    Clang :: CodeGen/exprs.c
    Clang :: CodeGen/string-literal-short-wstring.c
    Clang :: CodeGen/string-literal-unicode-conversion.c
    Clang :: CodeGen/string-literal.c
    Clang :: CodeGenCXX/microsoft-uuidof.cpp
    Clang :: Driver/crash-report.c
    Clang :: Driver/inhibit-downstream-commands.c
    Clang :: Driver/modules.m
    Clang :: Driver/nostdincxx.cpp
    Clang :: FixIt/fixit-recompile.c
    Clang :: FixIt/fixit-unicode.c
    Clang :: Index/pragma-diag-reparse.c
    Clang :: Index/preamble-reparse-cmd-define.c
    Clang :: Index/preamble-reparse-import.m
    Clang :: Index/targeted-annotation.c
    Clang :: Index/targeted-cursor.c
    Clang :: Index/targeted-file-refs.c
    Clang :: Modules/prune.m
    Clang :: Rewriter/no-integrated-preprocessing-64bit.m
    Clang :: Rewriter/no-integrated-preprocessing.m
    Clang :: Rewriter/rewrite-line-directive.m
    LLVM :: Assembler/2004-02-01-NegativeZero.ll
    LLVM :: BugPoint/compile-custom.ll
    LLVM :: DebugInfo/SystemZ/eh_frame_personality.s
    LLVM :: ExecutionEngine/2002-12-16-ArgTest.ll
    LLVM :: ExecutionEngine/2003-01-04-ArgumentBug.ll
    LLVM :: ExecutionEngine/2003-01-04-LoopTest.ll
    LLVM :: ExecutionEngine/2003-01-04-PhiTest.ll
    LLVM :: ExecutionEngine/2003-01-09-SARTest.ll
    LLVM :: ExecutionEngine/2003-01-10-FUCOM.ll
    LLVM :: ExecutionEngine/2003-01-15-AlignmentTest.ll
    LLVM :: ExecutionEngine/2003-05-07-ArgumentTest.ll
    LLVM :: ExecutionEngine/2003-05-11-PHIRegAllocBug.ll
    LLVM :: ExecutionEngine/2003-06-04-bzip2-bug.ll
    LLVM :: ExecutionEngine/2003-06-05-PHIBug.ll
    LLVM :: ExecutionEngine/2003-08-15-AllocaAssertion.ll
    LLVM :: ExecutionEngine/2003-08-21-EnvironmentTest.ll
    LLVM :: ExecutionEngine/2003-08-23-RegisterAllocatePhysReg.ll
    LLVM :: ExecutionEngine/2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll
    LLVM :: ExecutionEngine/2005-12-02-TailCallBug.ll
    LLVM :: ExecutionEngine/MCJIT/2002-12-16-ArgTest.ll
    LLVM :: ExecutionEngine/MCJIT/2003-01-04-ArgumentBug.ll
    LLVM :: ExecutionEngine/MCJIT/2003-01-04-LoopTest.ll
    LLVM :: ExecutionEngine/MCJIT/2003-01-04-PhiTest.ll
    LLVM :: ExecutionEngine/MCJIT/2003-01-09-SARTest.ll
    LLVM :: ExecutionEngine/MCJIT/2003-01-10-FUCOM.ll
    LLVM :: ExecutionEngine/MCJIT/2003-01-15-AlignmentTest.ll
    LLVM :: ExecutionEngine/MCJIT/2003-05-07-ArgumentTest.ll
    LLVM :: ExecutionEngine/MCJIT/2003-05-11-PHIRegAllocBug.ll
    LLVM :: ExecutionEngine/MCJIT/2003-06-04-bzip2-bug.ll
    LLVM :: ExecutionEngine/MCJIT/2003-06-05-PHIBug.ll
    LLVM :: ExecutionEngine/MCJIT/2003-08-15-AllocaAssertion.ll
    LLVM :: ExecutionEngine/MCJIT/2003-08-21-EnvironmentTest.ll
    LLVM :: ExecutionEngine/MCJIT/2003-08-23-RegisterAllocatePhysReg.ll
    LLVM :: ExecutionEngine/MCJIT/2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll
    LLVM :: ExecutionEngine/MCJIT/2005-12-02-TailCallBug.ll
    LLVM :: ExecutionEngine/MCJIT/2013-04-04-RelocAddend.ll
    LLVM :: ExecutionEngine/MCJIT/cross-module-a.ll
    LLVM :: ExecutionEngine/MCJIT/hello.ll
    LLVM :: ExecutionEngine/MCJIT/hello2.ll
    LLVM :: ExecutionEngine/MCJIT/load-object-a.ll
    LLVM :: ExecutionEngine/MCJIT/multi-module-a.ll
    LLVM :: ExecutionEngine/MCJIT/non-extern-addend-smallcodemodel.ll
    LLVM :: ExecutionEngine/MCJIT/non-extern-addend.ll
    LLVM :: ExecutionEngine/MCJIT/pr13727.ll
    LLVM :: ExecutionEngine/MCJIT/remote/cross-module-a.ll
    LLVM :: ExecutionEngine/MCJIT/remote/multi-module-a.ll
    LLVM :: ExecutionEngine/MCJIT/remote/simpletest-remote.ll
    LLVM :: ExecutionEngine/MCJIT/remote/test-common-symbols-remote.ll
    LLVM :: ExecutionEngine/MCJIT/remote/test-data-align-remote.ll
    LLVM :: ExecutionEngine/MCJIT/remote/test-fp-no-external-funcs-remote.ll
    LLVM :: ExecutionEngine/MCJIT/remote/test-global-init-nonzero-remote.ll
    LLVM :: ExecutionEngine/MCJIT/remote/test-ptr-reloc-remote.ll
    LLVM :: ExecutionEngine/MCJIT/simplesttest.ll
    LLVM :: ExecutionEngine/MCJIT/simpletest.ll
    LLVM :: ExecutionEngine/MCJIT/stubs.ll
    LLVM :: ExecutionEngine/MCJIT/test-arith.ll
    LLVM :: ExecutionEngine/MCJIT/test-branch.ll
    LLVM :: ExecutionEngine/MCJIT/test-call-no-external-funcs.ll
    LLVM :: ExecutionEngine/MCJIT/test-call.ll
    LLVM :: ExecutionEngine/MCJIT/test-cast.ll
    LLVM :: ExecutionEngine/MCJIT/test-common-symbols-alignment.ll
    LLVM :: ExecutionEngine/MCJIT/test-common-symbols.ll
    LLVM :: ExecutionEngine/MCJIT/test-constantexpr.ll
    LLVM :: ExecutionEngine/MCJIT/test-data-align.ll
    LLVM :: ExecutionEngine/MCJIT/test-fp-no-external-funcs.ll
    LLVM :: ExecutionEngine/MCJIT/test-fp.ll
    LLVM :: ExecutionEngine/MCJIT/test-global-ctors.ll
    LLVM :: ExecutionEngine/MCJIT/test-global-init-nonzero.ll
    LLVM :: ExecutionEngine/MCJIT/test-global.ll
    LLVM :: ExecutionEngine/MCJIT/test-loadstore.ll
    LLVM :: ExecutionEngine/MCJIT/test-local.ll
    LLVM :: ExecutionEngine/MCJIT/test-logical.ll
    LLVM :: ExecutionEngine/MCJIT/test-loop.ll
    LLVM :: ExecutionEngine/MCJIT/test-phi.ll
    LLVM :: ExecutionEngine/MCJIT/test-ptr-reloc.ll
    LLVM :: ExecutionEngine/MCJIT/test-ret.ll
    LLVM :: ExecutionEngine/MCJIT/test-return.ll
    LLVM :: ExecutionEngine/MCJIT/test-setcond-fp.ll
    LLVM :: ExecutionEngine/MCJIT/test-setcond-int.ll
    LLVM :: ExecutionEngine/MCJIT/test-shift.ll
    LLVM :: ExecutionEngine/hello.ll
    LLVM :: ExecutionEngine/hello2.ll
    LLVM :: ExecutionEngine/mov64zext32.ll
    LLVM :: ExecutionEngine/simplesttest.ll
    LLVM :: ExecutionEngine/simpletest.ll
    LLVM :: ExecutionEngine/stubs.ll
    LLVM :: ExecutionEngine/test-arith.ll
    LLVM :: ExecutionEngine/test-branch.ll
    LLVM :: ExecutionEngine/test-call-no-external-funcs.ll
    LLVM :: ExecutionEngine/test-call.ll
    LLVM :: ExecutionEngine/test-cast.ll
    LLVM :: ExecutionEngine/test-common-symbols.ll
    LLVM :: ExecutionEngine/test-constantexpr.ll
    LLVM :: ExecutionEngine/test-fp-no-external-funcs.ll
    LLVM :: ExecutionEngine/test-fp.ll
    LLVM :: ExecutionEngine/test-global-init-nonzero.ll
    LLVM :: ExecutionEngine/test-global.ll
    LLVM :: ExecutionEngine/test-interp-vec-arithm_float.ll
    LLVM :: ExecutionEngine/test-interp-vec-arithm_int.ll
    LLVM :: ExecutionEngine/test-interp-vec-logical.ll
    LLVM :: ExecutionEngine/test-interp-vec-setcond-fp.ll
    LLVM :: ExecutionEngine/test-interp-vec-setcond-int.ll
    LLVM :: ExecutionEngine/test-loadstore.ll
    LLVM :: ExecutionEngine/test-local.ll
    LLVM :: ExecutionEngine/test-logical.ll
    LLVM :: ExecutionEngine/test-loop.ll
    LLVM :: ExecutionEngine/test-phi.ll
    LLVM :: ExecutionEngine/test-ret.ll
    LLVM :: ExecutionEngine/test-return.ll
    LLVM :: ExecutionEngine/test-setcond-fp.ll
    LLVM :: ExecutionEngine/test-setcond-int.ll
    LLVM :: ExecutionEngine/test-shift.ll
    LLVM :: MC/ARM/eh-compact-pr0.s
    LLVM :: MC/ARM/eh-compact-pr1.s
    LLVM :: MC/ARM/eh-directive-cantunwind.s
    LLVM :: MC/ARM/eh-directive-handlerdata.s
    LLVM :: MC/ARM/eh-directive-integrated-test.s
    LLVM :: MC/ARM/eh-directive-multiple-offsets.s
    LLVM :: MC/ARM/eh-directive-pad.s
    LLVM :: MC/ARM/eh-directive-personality.s
    LLVM :: MC/ARM/eh-directive-save.s
    LLVM :: MC/ARM/eh-directive-section-multiple-func.s
    LLVM :: MC/ARM/eh-directive-section.s
    LLVM :: MC/ARM/eh-directive-setfp.s
    LLVM :: MC/ARM/eh-directive-text-section-multiple-func.s
    LLVM :: MC/ARM/eh-directive-text-section.s
    LLVM :: MC/ARM/eh-directive-vsave.s
    LLVM :: MC/COFF/symbol-fragment-offset.s
    LLVM :: MC/Mips/mips64eb-fixups.s
    LLVM :: Object/extract.ll
    LLVM :: Object/objdump-section-content.test
    LLVM :: Object/yaml2obj-elf-section-basic.yaml
    LLVM :: Other/can-execute.txt
    LLVM :: Other/pipefail.txt
    LLVM :: Transforms/InstCombine/fmul.ll
    LLVM :: Transforms/InstCombine/fsub.ll
    LLVM :: Transforms/InstCombine/select-crash.ll
    LLVM :: Transforms/Reassociate/fast-SubReassociate.ll
    LLVM :: Transforms/Reassociate/fast-basictest.ll
    LLVM :: tools/llvm-cov/llvm-cov.test
    LLVM :: tools/llvm-cov/showExpansions.cpp
    LLVM :: tools/llvm-cov/showHighlightedRanges.cpp
    LLVM :: tools/llvm-cov/showLineExecutionCounts.cpp
    LLVM :: tools/llvm-cov/showRegionMarkers.cpp
    LLVM :: tools/llvm-readobj/sections-ext.test
    LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.SemanticsDeath
    LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.StringDecimalDeath
    LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.StringDecimalExponentDeath
    LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.StringDecimalSignificandDeath
    LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.StringHexadecimalDeath
    LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.StringHexadecimalExponentDeath
    LLVM-Unit :: ADT/Release+Asserts/ADTTests/APFloatTest.StringHexadecimalSignificandDeath
    LLVM-Unit :: ADT/Release+Asserts/ADTTests/APIntTest.StringDeath
    LLVM-Unit :: ADT/Release+Asserts/ADTTests/PackedVectorTest.SignedValues
    LLVM-Unit :: ADT/Release+Asserts/ADTTests/PackedVectorTest.UnsignedValues
    LLVM-Unit :: IR/Release+Asserts/IRTests/ConstantsTest.AsInstructionsTest
    LLVM-Unit :: IR/Release+Asserts/IRTests/ConstantsTest.ReplaceWithConstantTest
    LLVM-Unit :: IR/Release+Asserts/IRTests/LeakDetector.Death1
    LLVM-Unit :: IR/Release+Asserts/IRTests/MDStringTest.PrintingComplex
    LLVM-Unit :: Support/Release+Asserts/SupportTests/ErrorOr.SimpleValue

  Expected Passes    : 18833
  Expected Failures  : 111
  Unsupported Tests  : 62
  Unexpected Passes  : 3
  Unexpected Failures: 206
make[1]: *** [check-local-all] Error 1
make[1]: Leaving directory `/data/data/com.spartacusrex.spartacuside/files/build/test'
make: *** [check-all] Error 2
terminal++ at 192.168.1.229:~/build$


More information about the llvm-commits mailing list