From 8bf51db3e72d1ed3887f9d7d1bc74ce9e2916d5b Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Sun, 28 Oct 2018 11:56:47 +0100 Subject: [PATCH] test: mark public_api_guard test with fixme-ivy-aot and no-ivy-jit (#26602) These tests are currently broken because of the following reasons: - ivy no longer emits a generated index, so the filename of the main d.ts file is different - ivy currently exports some symbols that don't match the golden file, this needs investigation PR Close #26602 --- tools/public_api_guard/public_api_guard.bzl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/public_api_guard/public_api_guard.bzl b/tools/public_api_guard/public_api_guard.bzl index cf4f0d5a68..c7d538a069 100644 --- a/tools/public_api_guard/public_api_guard.bzl +++ b/tools/public_api_guard/public_api_guard.bzl @@ -26,4 +26,8 @@ def generate_targets(golden_files): "//packages/%s:%s" % (package_name + target_suffix, directory_name), ], golden = "tools/public_api_guard/%s" % golden_file, + tags = [ + "fixme-ivy-aot", # ivy no longer emits generated index file + "no-ivy-jit", # we will not ship JIT compiled packages to npm + ], )