mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
676775660f
This is a continuation of the YAML library error reporting refactoring/improvement and the idea by itself was mentioned in the following thread: https://reviews.llvm.org/D67182?id=218714#inline-603404 This performs a cleanup of all object emitters in the library. It allows using the custom one provided by the caller. One of the nice things is that each tool can now print its tool name, e.g: "yaml2obj: error: <text>" Also, the code became a bit simpler. Differential revision: https://reviews.llvm.org/D67445 llvm-svn: 371865
9 lines
393 B
YAML
9 lines
393 B
YAML
# RUN: echo "" | not yaml2obj 2>&1 | FileCheck %s
|
|
# RUN: echo -n "" | not yaml2obj 2>&1 | FileCheck %s
|
|
# RUN: echo " " | not yaml2obj 2>&1 | FileCheck %s
|
|
# RUN: echo " " | not yaml2obj 2>&1 | FileCheck %s
|
|
# CHECK: yaml2obj: error: unknown document type
|
|
|
|
# RUN: echo -e -n "\xff" | not yaml2obj 2>&1 | FileCheck %s --check-prefix=INVALID
|
|
# INVALID: yaml2obj: error: failed to parse YAML input
|