STT-tensorflow/tensorflow/compiler/xla/tests/filecheck.h
Adrian Kuegel 6d44543263 Run mlir_gpu tests from files.
This makes it easier to iterate over tests, because the test doesn't have to be
recompiled all the time.

PiperOrigin-RevId: 295913906
Change-Id: I975a8db086aceb862498f2d63138cb0bf4859c00
2020-02-19 00:58:17 -08:00

41 lines
1.6 KiB
C++

/* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#ifndef TENSORFLOW_COMPILER_XLA_TESTS_FILECHECK_H_
#define TENSORFLOW_COMPILER_XLA_TESTS_FILECHECK_H_
#include <string>
#include "tensorflow/compiler/xla/statusor.h"
#include "tensorflow/compiler/xla/types.h"
namespace xla {
// Runs FileCheck with the given pattern over given input string. Provided that
// FileCheck can execute, returns true if and only if FileCheck succeeded in
// matching the input.
StatusOr<bool> RunFileCheck(const std::string& input,
absl::string_view pattern);
// Runs FileCheck with the given pattern file over given input string. Provided
// that FileCheck can execute, returns true if and only if FileCheck succeeded
// in matching the input.
StatusOr<bool> RunFileCheckWithPatternFile(const std::string& input,
const std::string& pattern_file);
} // namespace xla
#endif // TENSORFLOW_COMPILER_XLA_TESTS_FILECHECK_H_