-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
groot/{rcmd,riofs}: add tests for more STL containers
- Loading branch information
Showing
5 changed files
with
473 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
key[000]: tree;1 "my tree title" (TTree) | ||
[000][str]: one | ||
[000][tstr]: one | ||
[000][lst_i32]: [-1] | ||
[000][deq_i32]: [-1] | ||
[000][vec_i32]: [-1] | ||
[000][vec_u32]: [1] | ||
[000][vec_str]: [one] | ||
[000][vec_tstr]: [one] | ||
[000][vec_vec_i32]: [[-1]] | ||
[000][vec_vec_u32]: [[1]] | ||
[000][vec_vec_str]: [[one]] | ||
[000][vec_vec_tstr]: [[one]] | ||
[000][vec_set_i32]: [[-1]] | ||
[000][vec_set_u32]: [[1]] | ||
[000][vec_set_str]: [[one]] | ||
[000][vec_set_tstr]: [[one]] | ||
[000][set_i32]: [-1] | ||
[000][set_u32]: [1] | ||
[000][set_str]: [one] | ||
[000][set_tstr]: [one] | ||
[000][uset_str]: [one] | ||
[000][map_i32_i16]: map[-1:-1] | ||
[000][map_u32_u16]: map[1:1] | ||
[000][map_i32_vec_i16]: map[-1:[-1]] | ||
[000][map_u32_vec_u16]: map[1:[1]] | ||
[000][map_i32_vec_str]: map[-1:[one]] | ||
[000][map_i32_set_i16]: map[-1:[-1]] | ||
[000][map_i32_set_str]: map[-1:[one]] | ||
[000][map_str_i16]: map[one:-1] | ||
[000][map_str_vec_i16]: map[one:[-1]] | ||
[000][map_str_vec_str]: map[one:[one]] | ||
[000][map_str_set_i16]: map[one:[-1]] | ||
[000][map_str_set_str]: map[one:[one]] | ||
[000][map_i32_vec_vec_i16]: map[-1:[[-1]]] | ||
[000][map_i32_vec_set_i16]: map[-1:[[-1]]] | ||
[000][map_str_str]: map[one:ONE] | ||
[000][map_str_tstr]: map[one:ONE] | ||
[000][map_tstr_tstr]: map[one:ONE] | ||
[000][map_tstr_str]: map[one:ONE] | ||
[000][umap_str_str]: map[one:ONE] | ||
[001][str]: two | ||
[001][tstr]: two | ||
[001][lst_i32]: [-1 -2] | ||
[001][deq_i32]: [-1 -2] | ||
[001][vec_i32]: [-1 -2] | ||
[001][vec_u32]: [1 2] | ||
[001][vec_str]: [one two] | ||
[001][vec_tstr]: [one two] | ||
[001][vec_vec_i32]: [[-1] [-1 -2]] | ||
[001][vec_vec_u32]: [[1] [1 2]] | ||
[001][vec_vec_str]: [[one] [one two]] | ||
[001][vec_vec_tstr]: [[one] [one two]] | ||
[001][vec_set_i32]: [[-1] [-2 -1]] | ||
[001][vec_set_u32]: [[1] [1 2]] | ||
[001][vec_set_str]: [[one] [one two]] | ||
[001][vec_set_tstr]: [[one] [one two]] | ||
[001][set_i32]: [-2 -1] | ||
[001][set_u32]: [1 2] | ||
[001][set_str]: [one two] | ||
[001][set_tstr]: [one two] | ||
[001][uset_str]: [two one] | ||
[001][map_i32_i16]: map[-2:-2 -1:-1] | ||
[001][map_u32_u16]: map[1:1 2:2] | ||
[001][map_i32_vec_i16]: map[-2:[-1 -2] -1:[-1]] | ||
[001][map_u32_vec_u16]: map[1:[1] 2:[1 2]] | ||
[001][map_i32_vec_str]: map[-2:[one two] -1:[one]] | ||
[001][map_i32_set_i16]: map[-2:[-2 -1] -1:[-1]] | ||
[001][map_i32_set_str]: map[-2:[one two] -1:[one]] | ||
[001][map_str_i16]: map[one:-1 two:-2] | ||
[001][map_str_vec_i16]: map[one:[-1] two:[-1 -2]] | ||
[001][map_str_vec_str]: map[one:[one] two:[one two]] | ||
[001][map_str_set_i16]: map[one:[-1] two:[-2 -1]] | ||
[001][map_str_set_str]: map[one:[one] two:[one two]] | ||
[001][map_i32_vec_vec_i16]: map[-2:[[-1] [-1 -2]] -1:[[-1]]] | ||
[001][map_i32_vec_set_i16]: map[-2:[[-1] [-2 -1]] -1:[[-1]]] | ||
[001][map_str_str]: map[one:ONE two:TWO] | ||
[001][map_str_tstr]: map[one:ONE two:TWO] | ||
[001][map_tstr_tstr]: map[one:ONE two:TWO] | ||
[001][map_tstr_str]: map[one:ONE two:TWO] | ||
[001][umap_str_str]: map[one:ONE two:TWO] |
Oops, something went wrong.