diff options
author | Elliott Hughes <enh@google.com> | 2019-02-15 13:48:38 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2019-02-15 14:40:08 -0800 |
commit | 15a2b7b17ba94a267a2285da0b72cd0064ca81c3 (patch) | |
tree | cec5caa753d7624408bb2ad6e629737f4092bff1 /linker/linker_test_globals.cpp | |
parent | 1b82812635e35667df9d28e7416d4b02c2083dfe (diff) |
Switch linker tests to Android.bp.
Life is easier if we just keep test code in the same directory as the
stuff it's testing...
Test: tests still build and pass
Change-Id: I9b35d689098bdc28a71d69645b0ca9fdd6ea0108
Diffstat (limited to 'linker/linker_test_globals.cpp')
-rw-r--r-- | linker/linker_test_globals.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/linker/linker_test_globals.cpp b/linker/linker_test_globals.cpp new file mode 100644 index 000000000..33a78b074 --- /dev/null +++ b/linker/linker_test_globals.cpp @@ -0,0 +1,31 @@ +/* + * Copyright (C) 2013 The Android Open Source Project + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS + * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT + * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +// To enable logging +int g_ld_debug_verbosity = 0; + |