Files
swift-mirror/test/Driver/help.swift
Jordan Rose a214f0b39b Fix call to llvm::opt::OptionTable::PrintHelp (#16269)
The signature here changed, but the old arguments implicitly converted
to the parameter types for the wrong overload, so we didn't notice.
Add a simple test that would have at least caught this for the driver.
2018-05-02 16:54:10 -07:00

24 lines
881 B
Swift

// Check that options printed with -help respect whether the driver is invoked
// as 'swift' or as 'swiftc'.
// RUN: %swiftc_driver -help | %FileCheck -check-prefix CHECK -check-prefix CHECK-SWIFTC %s
// RUN: %swiftc_driver -help | %FileCheck -check-prefix NEGATIVE -check-prefix NEGATIVE-SWIFTC %s
// RUN: %swift_driver -help | %FileCheck -check-prefix CHECK -check-prefix CHECK-SWIFT %s
// RUN: %swift_driver -help | %FileCheck -check-prefix NEGATIVE -check-prefix NEGATIVE-SWIFT %s
// Options that work with both 'swiftc' and 'swift':
// CHECK-DAG: -swift-version
// swiftc-only options:
// CHECK-SWIFTC-DAG: -typecheck
// NEGATIVE-SWIFT-NOT: -typecheck
// There are currently no interpreter-only options.
// Frontend options should not show up here.
// NEGATIVE-NOT: -merge-modules
// Options marked "help-hidden" should not show up here.
// NEGATIVE-NOT: -parse-stdlib