Skip to content

Commit

Permalink
modefilefree: Migrate get_build_mode -> `get_non_selectified_build_…
Browse files Browse the repository at this point in the history
…mode`

Summary: See D68401341

Reviewed By: sdruzkin, zsol, thechrisu

Differential Revision: D68401676

fbshipit-source-id: 12898ad75bd59cfd6134228f9c0bc56043b85949
JakobDegen authored and facebook-github-bot committed Jan 23, 2025
1 parent 7f03c22 commit 8dd9c0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions folly/debugging/symbolizer/test/validate_folly_symbolizer.bzl
Original file line number Diff line number Diff line change
@@ -127,14 +127,14 @@ def validate_symbolizer_dwp(name, binary):
# Only test in opt mode.
# In dev mode, the test still depends on the shared libraries except
# binary + dwp file.
if config.get_build_mode().startswith("opt"):
if config.get_non_selectified_build_mode().startswith("opt"):
custom_unittest(
name = name,
command = [
"$(exe //folly/debugging/symbolizer/test:symbolizer_dwp_compability.sh)",
"$(location {})".format(binary),
"$(location {}[dwp])".format(binary),
config.get_build_mode(),
config.get_non_selectified_build_mode(),
],
type = "simple",
)

0 comments on commit 8dd9c0e

Please sign in to comment.