Flutter Impeller
main.cc
Go to the documentation of this file.
1 // Copyright 2013 The Flutter Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include <wordexp.h>
6 
7 #include "flutter/fml/backtrace.h"
8 #include "flutter/fml/build_config.h"
9 #include "flutter/fml/command_line.h"
10 #include "flutter/fml/logging.h"
14 #include "gtest/gtest.h"
15 
16 namespace {
17 void print_usage() {
18  std::cout << "usage: impeller_golden_tests --working_dir=<working_dir>"
19  << std::endl
20  << std::endl;
21  std::cout << "flags:" << std::endl;
22  std::cout << " working_dir: Where the golden images will be generated and "
23  "uploaded to Skia Gold from."
24  << std::endl;
25 }
26 } // namespace
27 
28 namespace impeller {
29 TEST(ValidationTest, IsFatal) {
30  EXPECT_TRUE(ImpellerValidationErrorsAreFatal());
31 }
32 } // namespace impeller
33 
34 int main(int argc, char** argv) {
36  fml::InstallCrashHandler();
37  testing::InitGoogleTest(&argc, argv);
38  fml::CommandLine cmd = fml::CommandLineFromPlatformOrArgcArgv(argc, argv);
39 
40  std::optional<std::string> working_dir;
41  for (const auto& option : cmd.options()) {
42  if (option.name == "working_dir") {
43  wordexp_t wordexp_result;
44  int code = wordexp(option.value.c_str(), &wordexp_result, 0);
45  FML_CHECK(code == 0);
46  FML_CHECK(wordexp_result.we_wordc != 0);
47  working_dir = wordexp_result.we_wordv[0];
48  wordfree(&wordexp_result);
49  }
50  }
51  if (!working_dir) {
52  std::cout << "required argument \"working_dir\" is missing." << std::endl
53  << std::endl;
54  print_usage();
55  return 1;
56  }
57 
59  std::cout << "working directory: "
61  << std::endl;
62 
63  int return_code = RUN_ALL_TESTS();
64  if (0 == return_code) {
67  }
68  return return_code;
69 }
bool Write(WorkingDirectory *working_directory)
static GoldenDigest * Instance()
const std::string & GetPath() const
void SetPath(const std::string &path)
static WorkingDirectory * Instance()
int main(int argc, char **argv)
Definition: main.cc:34
bool ImpellerValidationErrorsAreFatal()
Definition: validation.cc:71
TEST(RationalTest, Make)
void ImpellerValidationErrorsSetFatal(bool fatal)
Definition: validation.cc:17