Summary: Currently, the specs directory is cleaned after running capture. This means that the `changed-files` are interpreted in the context of the second set of source files. Therefore if a procedure is deleted from the second set of source files, its specs file will not be deleted. This moves the cleaning of the specs directory to before capture, to avoid this problem. Reviewed By: ngorogiannis Differential Revision: D17093980 fbshipit-source-id: e1a8d8a54master
parent
a294085d9a
commit
6874926b10
@ -1 +1 @@
|
||||
{"top":{"current":0,"previous":0},"zero":{"current":6,"previous":6},"degrees":[{"degree":0,"current":3,"previous":4},{"degree":100,"current":3,"previous":1},{"degree":200,"current":0,"previous":1}]}
|
||||
{"top":{"current":0,"previous":0},"zero":{"current":7,"previous":6},"degrees":[{"degree":0,"current":3,"previous":4},{"degree":100,"current":4,"previous":1},{"degree":200,"current":0,"previous":1}]}
|
@ -1,13 +1,13 @@
|
||||
|
||||
digraph callgraph {
|
||||
N1 [ label = "b", flag = true ];
|
||||
N1 [ label = "b", flag = false ];
|
||||
|
||||
N0 [ label = "c", flag = true ];
|
||||
N0 [ label = "c", flag = false ];
|
||||
N0 -> N1 ;
|
||||
|
||||
N2 [ label = "a", flag = true ];
|
||||
N2 [ label = "a", flag = false ];
|
||||
N2 -> N3 ;
|
||||
|
||||
N3 [ label = "main", flag = true ];
|
||||
N3 [ label = "main", flag = false ];
|
||||
|
||||
}
|
||||
|
Loading…
Reference in new issue