Граф коммитов

8 Коммитов

Автор SHA1 Сообщение Дата
Anirudh Santhiar 679d336bb5
Add an option to help support vsjit debugging with qtest (#288)
* Add an option to help support vsjit debugging with qtest

* Remove arguments that are not picked up from the build definition
2019-05-10 17:53:03 -07:00
Iman Narasamdya b40a6d837d
Hook up mechanism for running pip in VM (#251)
In this change we hook up the mechanism for running pip in VM.

Interaction with VM is via so-called VmCommandProxy, which is provided by CB team. Instead of calling the methods of VmCommandProxy, we launch VmCommandProxy executable with specific commands. In this way, we don't need to be bound by the .NET framework used by VmCommandProxy.

Currently, VM initialization requires username/password because it has to create a drive map from the VM back to the host. This will change soon. The changes in this PR will enable us to test running pip in VM in the CI/CBTest environment.
2019-05-06 11:44:01 -07:00
Aleksandar Milicevic b6a0ca4a62
[MacSandbox] skip unnecessarily creating trie nodes on lookups (#246)
Before this PR, on every trie operation a leaf node corresponding to a given key is retrieved, creating any intermediate nodes along the way.

This is unnecessary for lookup operations. When the key does not exist in the trie, instead of traversing the trie until a leaf node is found and creating all intermediate nodes along the way, the lookup should fail as soon as an intermediate node is not found.

As a consequence of the previous implementation, if a process connects to the kext and then immediately disconnects, that alone causes the size of the `connectedClients_` dictionary to monotonically grow. This can become a problem because those nodes are released only when the kext is unloaded.
2019-05-03 08:52:46 -07:00
Anirudh Santhiar ba2d4bce6c Add CodeCoverage and ZipSandbox options to QTest (#217) 2019-05-01 12:09:46 -07:00
Huihui Nora Huang 5cc2d21653
update Qtest latest version (#151) 2019-04-17 15:09:06 -07:00
Aleksandar Milicevic 3e45361641
[MacSandbox] Extract bundle identifier into an xcconfig (#64)
This will be useful because being able to control bundle identifier and buildxl class prefix from a single place will allow us to easily build and simultaneously load multiple versions of our kext (e.g., one for LKG and one for tests)
2019-04-01 18:15:44 -07:00
Aleksandar Milicevic b906a17a2f
[MacSandbox] Use consistent prefix for all OSObject class names (#48)
All OSObject classes are added to a global (system-wide) registry. To avoid name collisions with classes from other kernel extensions, class names should be fully qualified. Currently, we have a bunch of OSObject classes whose names are very generic, like Thread, or ConcurrentDictionary, or Node, etc.

This PR renames all our OSObject classes by prepending com_microsoft_buildxl_ to their existing names.
2019-03-29 09:36:07 -07:00
Microsoft Open Source b5c9f43106 Initial sync
Sync from internal 'Domino' repo at 7ef83bdcd855bd3a837464e44d6de25f19775b5c
2019-03-28 15:35:49 -07:00