diff --git a/folly/cli/test/BUCK b/folly/cli/test/BUCK index 09cf3e8cd18..59955e503c3 100644 --- a/folly/cli/test/BUCK +++ b/folly/cli/test/BUCK @@ -64,3 +64,14 @@ cpp_binary( "glog", ], ) + +cpp_binary( + name = "nested_command_line_app_example", + srcs = ["NestedCommandLineAppExample.cpp"], + headers = [], + deps = [ + "//folly:scope_guard", + "//folly:string", + "//folly/cli:program_options", + ], +) diff --git a/folly/experimental/test/NestedCommandLineAppExample.cpp b/folly/cli/test/NestedCommandLineAppExample.cpp similarity index 100% rename from folly/experimental/test/NestedCommandLineAppExample.cpp rename to folly/cli/test/NestedCommandLineAppExample.cpp diff --git a/folly/experimental/test/BUCK b/folly/experimental/test/BUCK index 9fe6a77aa68..6c3bf768d51 100644 --- a/folly/experimental/test/BUCK +++ b/folly/experimental/test/BUCK @@ -1,4 +1,3 @@ -load("@fbcode_macros//build_defs:cpp_binary.bzl", "cpp_binary") load("@fbcode_macros//build_defs:cpp_library.bzl", "cpp_library") oncall("fbcode_entropy_wardens_folly") @@ -12,14 +11,3 @@ cpp_library( "//folly/compression/test:coding_test_utils", ], ) - -cpp_binary( - name = "nested_command_line_app_example", - srcs = ["NestedCommandLineAppExample.cpp"], - headers = [], - deps = [ - "//folly:scope_guard", - "//folly:string", - "//folly/cli:program_options", - ], -)