mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-12 21:18:53 +00:00
16 lines
449 B
Fish
16 lines
449 B
Fish
|
#RUN: %fish %s
|
||
|
# Example output:
|
||
|
# Build system: CMake
|
||
|
# Version: 3.7.1-2573-gea8301631-dirty
|
||
|
# Target (and host): x86_64-unknown-linux-gnu
|
||
|
# Profile: release
|
||
|
# Features: gettext
|
||
|
|
||
|
status buildinfo | grep -v 'Host:'
|
||
|
# CHECK: Build system: {{CMake|Cargo}}
|
||
|
# CHECK: Version: {{.+}}
|
||
|
# (this could be "Target (and Host)" or "Target:" and a separate line "Host:")
|
||
|
# CHECK: Target{{.*}}: {{.+}}
|
||
|
# CHECK: Profile: {{release|debug}}
|
||
|
# CHECK: Features:{{.*}}
|