
Summary: The internal shell already supports 'cd', ‘export’ and ‘echo’ commands. This patch adds implementation of non-pipelined ‘mkdir’, ‘diff’ and ‘rm’ commands as the internal shell builtins. Reviewed by: Zachary Turner, Reid Kleckner Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D39567 llvm-svn: 319528
6 lines
141 B
Plaintext
6 lines
141 B
Plaintext
# Check exit code error (file's contents are different)
|
|
#
|
|
# RUN: echo "hello-first" > %t
|
|
# RUN: echo "hello-second" > %t1
|
|
# RUN: diff %t %t1
|