blob: 458fca40e8598776e0d6b2f8c704bc3d1437fa48 [file] [log] [blame]
# Check verbose output.
# RUN: rm -rf %t.build
# RUN: mkdir -p %t.build
# RUN: cp %s %t.build/build.ninja
# RUN: %{llbuild} ninja build --jobs 1 -v --chdir %t.build &> %t.out
# RUN: %{FileCheck} --check-prefix=CHECK-VERBOSE --input-file %t.out %s
# RUN: %{llbuild} ninja build --jobs 1 --chdir %t.build &> %t.out
# RUN: %{FileCheck} --check-prefix=CHECK-NORMAL --input-file %t.out %s
# CHECK-VERBOSE: [1/{{.*}}] echo some custom command
# CHECK-NORMAL: [1/{{.*}}] CUSTOM
rule CUSTOM
description = CUSTOM
command = echo some custom command
build output: CUSTOM