Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make the build configuration under Bazel more correct. #1600

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

bcsgh
Copy link
Contributor

@bcsgh bcsgh commented Mar 16, 2025

  • Expose JSON_USE_EXCEPTION and JSON_HAS_INT64 as Bazel config flags with defaults that match the existing Bazel build.
  • Switch //:jsoncpp from using copts to defines for JSON_USE_EXCEPTION and JSON_HAS_INT64 so that rules that depend on it get the same config.
  • Make src/test_lib_json/fuzz.cpp respect JSON_USE_EXCEPTION.
  • #ifdef stuff that should only be used with JSON_USE_EXCEPTION.

Note:

See also #1601

Testing:

This builds with all 4 combinations:

for i in true false ; do
  for e in true false ; do
    bazel build --@//:use_exception=${e} --@//:has_int64=${i} ...
  done
done

@bcsgh bcsgh marked this pull request as ready for review March 17, 2025 01:44
@@ -242,6 +244,8 @@ TestResult& checkStringEqual(TestResult& result, const Json::String& expected,
"expected exception thrown: " #expr); \
} while (0)

#endif // JSON_USE_EXCEPTION
Copy link
Contributor Author

@bcsgh bcsgh Mar 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm halfway tempted to try to make a version of this that fork()s and checks that the invocation dies. (e.g. a death test).

if (pid_t child = fork(); child) {
  int status = 0;
  waitpid(child, &status, 0);
  if (status == 0) {
    result_->addFailure(__FILE__, __LINE__, "Expected assertion: ", #expr);
  }
} else {
  expr;
  exit_(0);
}

Something like that might work, but I don't really have time to dig into all the ways that can be subtly wrong.

bcsgh added 2 commits March 18, 2025 17:08
…th defaults that match the existing Bazel build.

Switch //:jsoncpp from using copts ro defines for JSON_USE_EXCEPTION and JSON_HAS_INT64 so that rules that depend on it get the same config.
Make src/test_lib_json/fuzz.cpp respect JSON_USE_EXCEPTION.
@bcsgh bcsgh force-pushed the bcsgh/bazel-config branch from f05f667 to 8751d15 Compare March 19, 2025 00:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant