- libcxx/gdb/gdb_pretty_printer_test.sh.cpp tests that vectors pretty-print correctly, but the exact output depends on the target: vector<bool> stores its bits in an array of __storage_type, which may be 32 bits.
- The unique_ptr_ret and weak_ptr_ret tests are not expected to pass on x86. These tests check that unique_ptr and weak_ptr are returned by value, but on x86, all structs are always returned by reference.
Fixes bug 48939.
Can we instead use // XFAIL: target-x86?