Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
f6d52b0
Merge pull request #29 from AzureAD/release-0.1.1
rayluo Jul 17, 2019
20c6b35
Merge pull request #34 from AzureAD/release-0.1.2
rayluo Oct 19, 2019
9b44cc7
Merge pull request #38 from AzureAD/release-0.1.3
rayluo Nov 2, 2019
4efc521
Merge pull request #39 from AzureAD/release-0.1.3
rayluo Nov 2, 2019
32914b3
Merge pull request #45 from AzureAD/release-0.2.0
rayluo Apr 15, 2020
fae4931
Merge pull request #48 from AzureAD/release-0.2.1
rayluo Apr 23, 2020
3df9da0
Merge pull request #54 from AzureAD/release-0.2.2
abhidnya13 Apr 27, 2020
f99585c
Initial commit
abhidnya13 May 11, 2020
c3aef9e
Merge branch 'master' of https://github.com/AzureAD/microsoft-authent…
abhidnya13 May 14, 2020
e835383
Refactoring
abhidnya13 May 14, 2020
129b3de
Removing cache_file after finishing
abhidnya13 May 14, 2020
6f5014c
Splitting into two cases
abhidnya13 May 15, 2020
99c03a6
Reducing no_of_processes to avoid lock exception
abhidnya13 May 15, 2020
e9994f4
reducing processes
abhidnya13 May 15, 2020
784ab6a
Experimenting with no_of processes
abhidnya13 May 18, 2020
bb91f1c
testing limit of no of processes
abhidnya13 May 18, 2020
93a5551
Reducing no of processes
abhidnya13 May 19, 2020
1632f00
Modifying logic to catch exception and re-raise it
abhidnya13 May 19, 2020
0a418b7
Experimenting
abhidnya13 May 19, 2020
da5574f
Experimenting 1
abhidnya13 May 19, 2020
3ba7b2c
Experimenting 2
abhidnya13 May 19, 2020
795975e
Fixing typo in env variable
abhidnya13 May 19, 2020
e19a0b1
Experimenting 3
abhidnya13 May 22, 2020
0fd8862
Experimenting 4
abhidnya13 May 22, 2020
7571d4d
Experimenting 5
abhidnya13 May 22, 2020
789b5f1
Adding normal workload case and refactor
abhidnya13 May 23, 2020
b015921
Arranging order of the tests
abhidnya13 May 23, 2020
1127b31
refactor
abhidnya13 May 23, 2020
436bbf7
Cache file console app (#60)
abhidnya13 Jun 5, 2020
cf96ef6
Adding a description for cache file generator
abhidnya13 Jun 5, 2020
e7fd866
Changing the format of doc_string
abhidnya13 Jun 5, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions tests/cache_file_generator.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
This is a console application which is to be used for cross-platform lock performance testing.
The app will acquire lock for the cache file, log the process id and free the lock
Comment thread
rayluo marked this conversation as resolved.
Outdated
It takes in two arguments - cache file path and the sleep interval.
The cache file path is the path of cache file.
The sleep interval is the time in seconds for which the lock is held by a process.
"""

import logging
import os
import sys
Expand Down