diff options
| author | Dan Willemsen <dwillemsen@google.com> | 2017-10-02 19:42:37 -0700 |
|---|---|---|
| committer | Dan Willemsen <dwillemsen@google.com> | 2017-10-02 19:42:37 -0700 |
| commit | d120bfe21325e56229c01e07d0ac5aef7c94c778 (patch) | |
| tree | 598753e3856253062d073ec4da99be2085962612 | |
| parent | d18d5bb2122043a37570d8fcaf2f212ec505ff3f (diff) | |
| parent | a71d591065bb4e0b058c7f9efa4e708dbc6c13c9 (diff) | |
| download | platform_build_kati-d120bfe21325e56229c01e07d0ac5aef7c94c778.tar.gz platform_build_kati-d120bfe21325e56229c01e07d0ac5aef7c94c778.tar.bz2 platform_build_kati-d120bfe21325e56229c01e07d0ac5aef7c94c778.zip | |
Merge remote-tracking branch 'aosp/upstream'
* aosp/upstream:
Fix build and test using bionic as a libc
Remove default libs
Test: m ckati
Change-Id: Id07d6e42aec9f4efdc0ac9fe85fc9c90d1724dc5
| -rw-r--r-- | Android.bp | 5 | ||||
| -rw-r--r-- | exec.cc | 1 | ||||
| -rwxr-xr-x | runtest.rb | 2 |
3 files changed, 3 insertions, 5 deletions
@@ -20,11 +20,6 @@ cc_defaults { "-Werror", "-DNOLOG", ], - target: { - linux: { - host_ldlibs: ["-lrt", "-lpthread"], - }, - }, tidy_checks: [ "-google-global-names-in-headers", "-google-build-using-namespace", @@ -18,6 +18,7 @@ #include <stdio.h> #include <stdlib.h> +#include <sys/wait.h> #include <memory> #include <unordered_map> @@ -177,6 +177,8 @@ def normalize_kati_log(output) # Normalization for "include foo" with Go kati. output.gsub!(/(: )open (\S+): n(o such file or directory)\nNOTE:.*/, "\\1\\2: N\\3") + # Bionic libc has different error messages than glibc + output.gsub!(/Too many symbolic links encountered/, 'Too many levels of symbolic links') output end |
