Commit d528a4e4 authored by Phillip Smyth's avatar Phillip Smyth
Browse files

tests/frontend/show.py: Added bst show --all test

parent 6078909c
Loading
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
kind: compose

depends:
- fileNAME: import-dev.bst
  type: build

config:
  # Dont try running the sandbox, we dont have a
  # runtime to run anything in this context.
  integrate: False
+4 −0
Original line number Diff line number Diff line
kind: import
sources:
- kind: local
  path: files/dev-files
+7 −0
Original line number Diff line number Diff line
kind: stack
description: |

  Main stack target for the bst build test

depends:
- compose-all.bst
+12 −0
Original line number Diff line number Diff line
#ifndef __PONY_H__
#define __PONY_H__

#define PONY_BEGIN "Once upon a time, there was a pony."
#define PONY_END "And they lived happily ever after, the end."

#define MAKE_PONY(story)  \
  PONY_BEGIN \
  story \
  PONY_END

#endif /* __PONY_H__ */
+4 −0
Original line number Diff line number Diff line
# Project config for frontend build test
name: test

element-path: elements
Loading